mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-14 00:39:57 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/trunk@1138 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
e5701c611e
commit
45d551a776
5 changed files with 77 additions and 22 deletions
|
|
@ -83,7 +83,6 @@ div.editor_drag_down_area {
|
|||
border:0;
|
||||
padding:0px;
|
||||
clear:both;
|
||||
height:130px;
|
||||
}
|
||||
|
||||
.editor_preview_uploaded {
|
||||
|
|
@ -111,7 +110,7 @@ div.editor_drag_down_area {
|
|||
border:1px solid #AAAAAA;
|
||||
}
|
||||
|
||||
.editor_uploader_input_area {
|
||||
.editor_uploader_button_area {
|
||||
width:150px;
|
||||
float:left;
|
||||
clear:right;
|
||||
|
|
@ -125,13 +124,33 @@ div.editor_drag_down_area {
|
|||
position:relative;
|
||||
}
|
||||
|
||||
.editor_uploader_input {
|
||||
.editor_uploader_button {
|
||||
display:block;
|
||||
width:90px;
|
||||
width:92px;
|
||||
height:18px;
|
||||
border:1px solid #AAAAAA;
|
||||
background-color:#FFFFFF;
|
||||
margin-bottom:10px;
|
||||
margin-bottom:3px;
|
||||
}
|
||||
|
||||
.editor_uploader_status {
|
||||
margin:5px 0px 5px 0px;
|
||||
}
|
||||
|
||||
.editor_uploader_status .title {
|
||||
color:#999999;
|
||||
}
|
||||
|
||||
.editor_uploader_status .desc_attached {
|
||||
color:#000000;
|
||||
font-weight:bold;
|
||||
margin-right:3px;
|
||||
}
|
||||
|
||||
.editor_uploader_status .desc {
|
||||
color:#999999;
|
||||
font-weight:bold;
|
||||
margin-right:10px;
|
||||
}
|
||||
|
||||
.component_setup_window {
|
||||
|
|
|
|||
|
|
@ -115,19 +115,22 @@
|
|||
<!-- 파일 업로드 영역 -->
|
||||
<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}');">
|
||||
<option value=""></option>
|
||||
</select>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="editor_uploader_input_area">
|
||||
<input type="button" value="{$lang->edit->upload_file}" class="editor_uploader_input" onclick="editor_upload_file('{$upload_target_srl}');return false;" />
|
||||
<input type="button" value="{$lang->edit->delete_selected}" class="editor_uploader_input" onclick="editor_remove_file('{$upload_target_srl}');return false;" />
|
||||
<input type="button" value="{$lang->edit->link_file}" class="editor_uploader_input" onclick="editor_insert_file('{$upload_target_srl}');return false;" />
|
||||
<input type="file" name="file" id="file_uploader_{$upload_target_srl}" class="editor_uploader_file_input" onchange="editor_file_upload(this, '{$upload_target_srl}')" value="{$lang->edit->upload}" />
|
||||
<div class="editor_uploader_button_area">
|
||||
<input type="button" value="{$lang->edit->upload_file}" class="editor_uploader_button" onclick="editor_upload_file('{$upload_target_srl}');return false;" />
|
||||
<input type="button" value="{$lang->edit->delete_selected}" class="editor_uploader_button" onclick="editor_remove_file('{$upload_target_srl}');return false;" />
|
||||
<input type="button" value="{$lang->edit->link_file}" class="editor_uploader_button" onclick="editor_insert_file('{$upload_target_srl}');return false;" />
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="3">
|
||||
<div class="editor_uploader_status" id="uploader_status_{$upload_target_srl}"></div>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
<!--@end-->
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue