mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-07 02:31:40 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@4896 201d5d3c-b55e-5fd7-737f-ddc643e51545
89 lines
3.9 KiB
HTML
89 lines
3.9 KiB
HTML
<!--%import("popup.js")-->
|
|
<!--%import("popup.css")-->
|
|
<!--%import("../lang")-->
|
|
|
|
<div id="popHeadder">
|
|
<h3>{$component_info->title} ver. {$component_info->version}</h3>
|
|
</div>
|
|
|
|
<form action="./" method="get" onSubmit="return false" id="fo">
|
|
<input type="hidden" name="editor_sequence" value="{$editor_sequence}" />
|
|
|
|
<div id="popBody">
|
|
|
|
<table cellspacing="0" class="adminTable">
|
|
<col width="120" />
|
|
<col />
|
|
<tr>
|
|
<th scope="row"><div>{$lang->width}</div></th>
|
|
<td><input type="text" class="inputTypeText" size="3" id="width" value="400" />px</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row"><div>{$lang->gallery_style}</div></th>
|
|
<td>
|
|
<select id="gallery_style">
|
|
<option value="slide">{$lang->gallery_slide_style}</option>
|
|
<option value="list">{$lang->gallery_list_style}</option>
|
|
</select>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row"><div>{$lang->gallery_slide_align}</div></th>
|
|
<td>
|
|
<select id="gallery_align">
|
|
<option value="center">{$lang->gallery_slide_center}</option>
|
|
<option value="left">{$lang->gallery_slide_left}</option>
|
|
<option value="right">{$lang->gallery_slide_right}</option>
|
|
</select>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row"><div>{$lang->gallery_border_thickness}</div></th>
|
|
<td><input type="text" class="inputTypeText" size="1" id="border_thickness" value="0" />px</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row"><div>{$lang->gallery_border_color}</div></th>
|
|
<td>
|
|
<div class="editor_color_box">
|
|
<script type="text/javascript">
|
|
printColor("border", "{$tpl_path}/images/blank.gif");
|
|
</script>
|
|
</div>
|
|
<ul class="buttonLeft">
|
|
<li><img src="./images/border_solid.gif" alt="blank" class="border_preview_color" id="border_preview_color" /></li>
|
|
<li>#<input type="text" id="border_color_input" size="7" maxlength="6" class="inputTypeText" value="000000" onkeyup="manual_select_color('border',this)"/></li>
|
|
</ul>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row"><div>{$lang->gallery_bg_color}</div></th>
|
|
<td>
|
|
<div class="editor_color_box">
|
|
<script type="text/javascript">
|
|
printColor("bg", "{$tpl_path}/images/blank.gif");
|
|
</script>
|
|
</div>
|
|
<ul class="buttonLeft">
|
|
<li><img src="./images/blank.gif" alt="blank" class="bg_preview_color" id="bg_preview_color" /></li>
|
|
<li>#<input type="text" id="bg_color_input" size="7" maxlength="6" class="inputTypeText" value="FFFFFF" onkeyup="manual_select_color('bg',this)"/></li>
|
|
</ul>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row"><div>{$lang->image_list}</div></th>
|
|
<td>
|
|
<select id="image_list" size="6" multiple="true" class="image_list">
|
|
</select>
|
|
<p>{$lang->about_image_list}</p>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</div>
|
|
|
|
<div id="popFooter" class="tCenter">
|
|
<a href="#" onclick="insertSlideShow()" class="button"><span>{$lang->cmd_insert}</span></a>
|
|
<a href="#" onclick="window.close(); return false;" class="button"><span>{$lang->cmd_close}</span></a>
|
|
<a href="#" onclick="winopen('./?module=editor&act=dispEditorComponentInfo&component_name={$component_info->component_name}','ComponentInfo','left=10,top=10,width=10,height=10,resizable=no,scrollbars=no,toolbars=no');return false;" class="button"><span>{$lang->about_component}</span></a>
|
|
</div>
|
|
|
|
</form>
|