git-svn-id: http://xe-core.googlecode.com/svn/trunk@467 201d5d3c-b55e-5fd7-737f-ddc643e51545

This commit is contained in:
zero 2007-03-16 01:36:08 +00:00
parent 5215f35fdc
commit c77babdd29
2 changed files with 46 additions and 48 deletions

View file

@ -135,28 +135,35 @@ input.editor_input {
}
.editor_uploader_box {
margin:0px;
margin:10px 0px 0px 0px;
border:0px;
padding:0px;
clear:both;
}
.editor_uploader_box table {
border:0px;
margin:0px;
padding:2px;
table-layout:fixed;
width:100%;
.editor_uploader {
margin-right:10px;
padding-right:5px;
border-right:1px dotted #AAAAAA;
width:255px;
float:left;
}
.uploaded_file_list {
width:250px;
height:120px;
}
.editor_component {
float:left;
}
.uploaded_file_preview_box {
border:1px solid #EEEEEE;
width:120px;
height:120px;
}
.uploaded_file_list {
width:250px;
height:120px;
float:left;
margin-right:10px;
}
.editor_align_icon {

View file

@ -73,20 +73,15 @@
<input type="hidden" name="upload_target_srl" value="{$upload_target_srl}" />
<div class="editor_uploader_box">
<table>
<tr valign="top">
<td>
<div class="editor_uploader">
<select id='uploaded_file_list_{$upload_target_srl}' size='9' class="uploaded_file_list" onclick="editor_preview(this, '{$upload_target_srl}')"></select><br />
<input type="file" name="file" onchange="editor_file_upload(this, '{$upload_target_srl}')" value="{$lang->edit->upload}" /><br />
<input type="button" value="{$lang->edit->delete_selected}" onclick="editor_remove_file('{$upload_target_srl}');return false;" />
<input type="button" value="{$lang->edit->link_selected}" onclick="editor_insert_file('{$upload_target_srl}');return false;" />
</td>
<td>
<table>
<tr>
<td><div id="uploaded_file_preview_box_{$upload_target_srl}" class="uploaded_file_preview_box"></div></td>
<td>
</div>
<div id="editor_component_{$upload_target_srl}" class="editor_component">
<div id="uploaded_file_preview_box_{$upload_target_srl}" class="uploaded_file_preview_box"></div>
<div>
<div class="editor_align_icon">
<img src="./images/icon_align_article.gif" border="0" onclick="editor_insert_file('{$upload_target_srl}', '');" alt="{$lang->edit->icon_align_article}"/>
{$lang->edit->icon_align_article}
@ -103,11 +98,7 @@
<img src="./images/icon_align_right.gif" border="0" onclick="editor_insert_file('{$upload_target_srl}', 'right');" alt="{$lang->edit->icon_align_right}"/>
{$lang->edit->icon_align_right}
</div>
</td>
</tr>
</table>
</td>
</tr>
</table>
</div>
</div>
</div>
<!--@end-->