mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-05-10 20:44:28 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/trunk@532 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
01572b0d18
commit
69979f99ea
3 changed files with 62 additions and 50 deletions
|
|
@ -11,7 +11,7 @@
|
||||||
|
|
||||||
<div class="editor_button_area">
|
<div class="editor_button_area">
|
||||||
<input type="button" class="editor_button" value="{$lang->cmd_insert}" onclick="setText()" />
|
<input type="button" class="editor_button" value="{$lang->cmd_insert}" onclick="setText()" />
|
||||||
<intput type="button" class="editor_button" value="{$lang->cmd_close}" onclick="window.close()" />
|
<input type="button" class="editor_button" value="{$lang->cmd_close}" onclick="window.close()" />
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</form>
|
</form>
|
||||||
|
|
|
||||||
|
|
@ -2,6 +2,13 @@ div.editor_content {
|
||||||
margin:3px;
|
margin:3px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
div.editor_area_1 {
|
||||||
|
}
|
||||||
|
|
||||||
|
div.editor_area_2 {
|
||||||
|
clear:left;
|
||||||
|
}
|
||||||
|
|
||||||
div.editor_fontbox {
|
div.editor_fontbox {
|
||||||
margin : 3px 3px 3px 0px;
|
margin : 3px 3px 3px 0px;
|
||||||
float:left;
|
float:left;
|
||||||
|
|
|
||||||
|
|
@ -10,6 +10,8 @@
|
||||||
|
|
||||||
<!-- 에디터 -->
|
<!-- 에디터 -->
|
||||||
<div class="editor_content">
|
<div class="editor_content">
|
||||||
|
|
||||||
|
<div class="editor_area_1">
|
||||||
<!-- 폰트 종류와 크기 -->
|
<!-- 폰트 종류와 크기 -->
|
||||||
<div class="editor_fontbox">
|
<div class="editor_fontbox">
|
||||||
<select onChange="editorChangeFontName(this,'{$upload_target_srl}')" id="editor_font_{$upload_target_srl}">
|
<select onChange="editorChangeFontName(this,'{$upload_target_srl}')" id="editor_font_{$upload_target_srl}">
|
||||||
|
|
@ -38,13 +40,6 @@
|
||||||
<img src="./images/strike.gif" alt="{$lang->edit->help_strike}" class="editor_icon" id="component_{$upload_target_srl}_StrikeThrough" />
|
<img src="./images/strike.gif" alt="{$lang->edit->help_strike}" class="editor_icon" id="component_{$upload_target_srl}_StrikeThrough" />
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- 컴포넌트 -->
|
|
||||||
<div id="editor_component_{$upload_target_srl}" class="editor_iconbox">
|
|
||||||
<!--@foreach($component_list as $component)-->
|
|
||||||
<img src="../components/{$component}/icon.gif" alt="{$component}" class="editor_icon" id="component_{$upload_target_srl}_{$component}" />
|
|
||||||
<!--@end-->
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<!-- 에디팅 관련 문단 기능 (IE에서는 사용자 선택시 나타남) -->
|
<!-- 에디팅 관련 문단 기능 (IE에서는 사용자 선택시 나타남) -->
|
||||||
<div id="editor_paragraph_{$upload_target_srl}" class="editor_iconbox" style="display:none">
|
<div id="editor_paragraph_{$upload_target_srl}" class="editor_iconbox" style="display:none">
|
||||||
<img src="./images/align_left.gif" alt="{$lang->edit->help_align_left}" id="component_{$upload_target_srl}_justifyleft" />
|
<img src="./images/align_left.gif" alt="{$lang->edit->help_align_left}" id="component_{$upload_target_srl}_justifyleft" />
|
||||||
|
|
@ -61,6 +56,16 @@
|
||||||
<input type="checkbox" name="use_paragraph" id="editor_use_paragraph_{$upload_target_srl}" onclick="editorUseParagraph(this,'{$upload_target_srl}');" />
|
<input type="checkbox" name="use_paragraph" id="editor_use_paragraph_{$upload_target_srl}" onclick="editorUseParagraph(this,'{$upload_target_srl}');" />
|
||||||
<label for="editor_use_paragraph_{$upload_target_srl}">{$lang->edit->use_paragraph}</label>
|
<label for="editor_use_paragraph_{$upload_target_srl}">{$lang->edit->use_paragraph}</label>
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="editor_area_2">
|
||||||
|
<!-- 컴포넌트 -->
|
||||||
|
<div id="editor_component_{$upload_target_srl}" class="editor_iconbox">
|
||||||
|
<!--@foreach($component_list as $component)-->
|
||||||
|
<img src="../components/{$component}/icon.gif" alt="{$component}" class="editor_icon" id="component_{$upload_target_srl}_{$component}" />
|
||||||
|
<!--@end-->
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
<!-- iframe -->
|
<!-- iframe -->
|
||||||
<div class="editor_iframe_box"><iframe id="editor_iframe_{$upload_target_srl}" frameBorder="0" style="border:0px;width:99%;height:300px;margin:0px;"></iframe><div class="editor_drag_down_area" id="editor_drag_bar_{$upload_target_srl}"></div></div>
|
<div class="editor_iframe_box"><iframe id="editor_iframe_{$upload_target_srl}" frameBorder="0" style="border:0px;width:99%;height:300px;margin:0px;"></iframe><div class="editor_drag_down_area" id="editor_drag_bar_{$upload_target_srl}"></div></div>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue