mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-07 02:31:40 +09:00
변경전의 xe.less 파일도 rhymix.less와 함께 load 하여 호환정 유지
CSS 충돌 예)
bootstrap의 .btn
사용 예)
bootstrap 사용시엔 {Context::unloadBasicFiles('xe')}으로 unload 시키면 문제없음
37 lines
1.4 KiB
HTML
37 lines
1.4 KiB
HTML
<load target="js/poll_admin.js" />
|
|
<!--#include("./header.html")-->
|
|
|
|
<div cond="$XE_VALIDATOR_MESSAGE && $XE_VALIDATOR_ID == 'modules/poll/tpl/config/1'" class="rhymix_message {$XE_VALIDATOR_MESSAGE_TYPE}">
|
|
<p>{$XE_VALIDATOR_MESSAGE}</p>
|
|
</div>
|
|
<form ruleset="insertConfig" action="./" method="post" id="fo_poll">
|
|
<input type="hidden" name="module" value="poll" />
|
|
<input type="hidden" name="act" value="procPollAdminInsertConfig" />
|
|
<input type="hidden" name="xe_validator_id" value="modules/poll/tpl/config/1" />
|
|
<table class="x_table x_table-striped x_table-hover">
|
|
<tr>
|
|
<th scope="col">{$lang->skin}</th>
|
|
<td>
|
|
<select name="skin" onchange="doDisplaySkinColorset(this);return false;">
|
|
<!--@foreach($skin_list as $key => $val)-->
|
|
<option value="{$key}" <!--@if($config->skin == $key)-->selected="selected"<!--@end-->>{$val->title} ({htmlspecialchars($key, ENT_COMPAT | ENT_HTML401, 'UTF-8', false)})</option>
|
|
<!--@end-->
|
|
</select>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="col">{$lang->colorset}</th>
|
|
<td>
|
|
<select name="colorset" id="poll_colorset">
|
|
<!--@foreach($colorset_list as $key => $val)-->
|
|
<option value="{$val->name}" <!--@if($config->colorset == $val->name)-->selected="selected"<!--@end-->>{$val->title} ({$val->name})</option>
|
|
<!--@end-->
|
|
</select>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
<div class="rhymix_button_wrapper">
|
|
<input class="rhymix_button" type="submit" value="{$lang->cmd_registration}" />
|
|
</div>
|
|
</form>
|