mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-09 03:32:00 +09:00
Board module UX enhancement prototype.
git-svn-id: http://xe-core.googlecode.com/svn/branches/maserati@12244 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
3480da757a
commit
8a60464b18
19 changed files with 43 additions and 10 deletions
|
|
@ -1512,7 +1512,7 @@
|
|||
<value xml:lang="ko"><![CDATA[예]]></value>
|
||||
<value xml:lang="en"><![CDATA[Yes]]></value>
|
||||
</item>
|
||||
<item name="no">
|
||||
<item name="not">
|
||||
<value xml:lang="ko"><![CDATA[아니오]]></value>
|
||||
<value xml:lang="en"><![CDATA[No]]></value>
|
||||
</item>
|
||||
|
|
|
|||
|
|
@ -134,6 +134,8 @@ body>.x,
|
|||
.x .section>h1>.snToggle.x_icon-chevron-up{background-position:-279px -112px}
|
||||
.x .section>h1>.snToggle.x_icon-chevron-down{background-position:-303px -111px}
|
||||
.x .section>h2{position:relative;border-bottom:1px dotted #ddd}
|
||||
.x .section.collapse>*{display:none}
|
||||
.x .section.collapse>h1{display:block}
|
||||
.x .center{text-align:center}
|
||||
.x .search{margin:20px 0}
|
||||
.x .search select{width:auto}
|
||||
|
|
|
|||
2
modules/admin/tpl/css/admin.min.css
vendored
2
modules/admin/tpl/css/admin.min.css
vendored
File diff suppressed because one or more lines are too long
|
|
@ -255,10 +255,10 @@ jQuery(function($){
|
|||
var $this = $(this);
|
||||
var $section = $this.closest('.section');
|
||||
if(!$section.hasClass('collapse')){
|
||||
$section.addClass('collapse').children('h1:first').siblings().hide();
|
||||
$section.addClass('collapse');
|
||||
$this.removeClass('x_icon-chevron-up').addClass('x_icon-chevron-down');
|
||||
} else {
|
||||
$section.removeClass('collapse').children('h1:first').siblings().show();
|
||||
$section.removeClass('collapse');
|
||||
$this.removeClass('x_icon-chevron-down').addClass('x_icon-chevron-up');
|
||||
}
|
||||
reflow();
|
||||
|
|
@ -1591,6 +1591,7 @@ jQuery(function($){
|
|||
}else{
|
||||
var $displayInput = $('<input type="text" id="lang_' + id + '" class="displayInput" style="width:' + width + 'px">').data('lang-id', id);
|
||||
}
|
||||
$displayInput.attr('placeholder', $this.attr('placeholder'));
|
||||
var $remover = $('<button type="button" class="x_add-on remover" title="' + xe.cmd_remove_multilingual_text + '"><i class="x_icon-remove"></i>' + xe.cmd_remove_multilingual_text + '</button>').data('lang-target', id);
|
||||
var $setter = $('<a href="#g11n" class="x_add-on modalAnchor" title="' + xe.cmd_set_multilingual_text + '"><i class="x_icon-globe"></i>' + xe.cmd_set_multilingual_text + '</a>').data('lang-target', id);
|
||||
|
||||
|
|
@ -1691,7 +1692,6 @@ jQuery(function($){
|
|||
}
|
||||
|
||||
});
|
||||
|
||||
return this;
|
||||
};
|
||||
|
||||
|
|
|
|||
2
modules/admin/tpl/js/admin.min.js
vendored
2
modules/admin/tpl/js/admin.min.js
vendored
File diff suppressed because one or more lines are too long
|
|
@ -44,7 +44,7 @@
|
|||
<label class="x_control-label">{$lang->is_required}</label>
|
||||
<div class="x_controls">
|
||||
<label class="x_inline" for="is_required_y"><input type="radio" name="is_required" id="is_required_y" value="Y" checked="checked"|cond="$selected_var->is_required == 'Y'" /> {$lang->yes}</label>
|
||||
<label class="x_inline" for="is_required_n"><input type="radio" name="is_required" id="is_required_n" value="N" checked="checked"|cond="$selected_var->is_required != 'Y'" /> {$lang->no}</label>
|
||||
<label class="x_inline" for="is_required_n"><input type="radio" name="is_required" id="is_required_n" value="N" checked="checked"|cond="$selected_var->is_required != 'Y'" /> {$lang->not}</label>
|
||||
</div>
|
||||
</div>
|
||||
<div class="x_control-group">
|
||||
|
|
@ -64,7 +64,7 @@
|
|||
<label class="x_control-label">{$lang->cmd_search}</label>
|
||||
<div class="x_controls">
|
||||
<label class="x_inline" for="search_y"><input type="radio" name="search" id="search_y" value="Y" checked="checked"|cond="$selected_var->search=='Y'" /> {$lang->yes}</label>
|
||||
<label class="x_inline" for="search_n"><input type="radio" name="search" id="search_n" value="N" checked="checked"|cond="$selected_var->search!='Y'" /> {$lang->no}</label>
|
||||
<label class="x_inline" for="search_n"><input type="radio" name="search" id="search_n" value="N" checked="checked"|cond="$selected_var->search!='Y'" /> {$lang->not}</label>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
|
|
|||
|
|
@ -1,3 +1,4 @@
|
|||
<link rel="stylesheet" href="./modules/install/script/welcome_content/welcome.css" />
|
||||
<article class="welcomeXE">
|
||||
<h2>XE core '{$version}' has been successfully installed!</h2>
|
||||
<section class="odd i1">
|
||||
|
|
|
|||
|
|
@ -1,3 +1,4 @@
|
|||
<link rel="stylesheet" href="./modules/install/script/welcome_content/welcome.css" />
|
||||
<article class="welcomeXE">
|
||||
<h2>XE core '{$version}' has been successfully installed!</h2>
|
||||
<section class="odd i1">
|
||||
|
|
|
|||
|
|
@ -1,3 +1,4 @@
|
|||
<link rel="stylesheet" href="./modules/install/script/welcome_content/welcome.css" />
|
||||
<article class="welcomeXE">
|
||||
<h2>XE core '{$version}' has been successfully installed!</h2>
|
||||
<section class="odd i1">
|
||||
|
|
|
|||
|
|
@ -1,3 +1,4 @@
|
|||
<link rel="stylesheet" href="./modules/install/script/welcome_content/welcome.css" />
|
||||
<article class="welcomeXE">
|
||||
<h2>XE core '{$version}' has been successfully installed!</h2>
|
||||
<section class="odd i1">
|
||||
|
|
|
|||
|
|
@ -1,3 +1,4 @@
|
|||
<link rel="stylesheet" href="./modules/install/script/welcome_content/welcome.css" />
|
||||
<article class="welcomeXE">
|
||||
<h2>XE core '{$version}' 설치를 환영합니다!</h2>
|
||||
<section class="odd i1">
|
||||
|
|
|
|||
|
|
@ -1,3 +1,4 @@
|
|||
<link rel="stylesheet" href="./modules/install/script/welcome_content/welcome.css" />
|
||||
<article class="welcomeXE">
|
||||
<h2>XE core '{$version}' has been successfully installed!</h2>
|
||||
<section class="odd i1">
|
||||
|
|
|
|||
|
|
@ -1,3 +1,4 @@
|
|||
<link rel="stylesheet" href="./modules/install/script/welcome_content/welcome.css" />
|
||||
<article class="welcomeXE">
|
||||
<h2>XE core '{$version}' has been successfully installed!</h2>
|
||||
<section class="odd i1">
|
||||
|
|
|
|||
|
|
@ -1,3 +1,4 @@
|
|||
<link rel="stylesheet" href="./modules/install/script/welcome_content/welcome.css" />
|
||||
<article class="welcomeXE">
|
||||
<h2>XE core '{$version}' has been successfully installed!</h2>
|
||||
<section class="odd i1">
|
||||
|
|
|
|||
|
|
@ -1,3 +1,4 @@
|
|||
<link rel="stylesheet" href="./modules/install/script/welcome_content/welcome.css" />
|
||||
<article class="welcomeXE">
|
||||
<h2>XE core '{$version}' has been successfully installed!</h2>
|
||||
<section class="odd i1">
|
||||
|
|
|
|||
|
|
@ -1,3 +1,4 @@
|
|||
<link rel="stylesheet" href="./modules/install/script/welcome_content/welcome.css" />
|
||||
<article class="welcomeXE">
|
||||
<h2>XE core '{$version}' has been successfully installed!</h2>
|
||||
<section class="odd i1">
|
||||
|
|
|
|||
|
|
@ -1,3 +1,4 @@
|
|||
<link rel="stylesheet" href="./modules/install/script/welcome_content/welcome.css" />
|
||||
<article class="welcomeXE">
|
||||
<h2>XE core '{$version}' has been successfully installed!</h2>
|
||||
<section class="odd i1">
|
||||
|
|
|
|||
|
|
@ -841,7 +841,7 @@ URL для менеджера модулей <a href="./?module=admin&act=di
|
|||
<value xml:lang="jp"><![CDATA[スキン固定]]></value>
|
||||
</item>
|
||||
<item name="about_skin_fix">
|
||||
<value xml:lang="ko"><![CDATA[테마 설정과 상관없이 스킨을 고정시킵니다. 사용하면 테마의 일괄 스킨 설정 대상에서 제외됩니다.]]></value>
|
||||
<value xml:lang="ko"><![CDATA[스킨을 고정시킵니다. 일괄 스킨 설정 대상에서 제외됩니다.]]></value>
|
||||
<value xml:lang="en"><![CDATA[Check this to fix the skin regardless of theme setting.]]></value>
|
||||
<value xml:lang="jp"><![CDATA[テーマ設定に関係なくスキンを固定させます。使用すると、テーマの一括スキン設定対象から外されます。]]></value>
|
||||
</item>
|
||||
|
|
@ -869,6 +869,26 @@ URL для менеджера модулей <a href="./?module=admin&act=di
|
|||
<value xml:lang="tr"><![CDATA[İşaretlediğiniz taktirde, kategori özelliği etkinleştirilecektir.]]></value>
|
||||
<value xml:lang="vi"><![CDATA[Nếu chon, chức năng thể loại sẽ hoạt động.]]></value>
|
||||
</item>
|
||||
<item name="about_use_grant_setup">
|
||||
<value xml:lang="ko"><![CDATA[선택하면 권한을 관리할 수 있습니다.]]></value>
|
||||
<value xml:lang="en"><![CDATA[If checked, the content extra vars function will be enabled.]]></value>
|
||||
</item>
|
||||
<item name="about_use_addition_setup">
|
||||
<value xml:lang="ko"><![CDATA[선택하면 추가 설정을 할 수 있습니다.]]></value>
|
||||
<value xml:lang="en"><![CDATA[If checked, the content extra vars function will be enabled.]]></value>
|
||||
</item>
|
||||
<item name="about_use_extra_vars">
|
||||
<value xml:lang="ko"><![CDATA[선택하면 콘텐츠 확장변수를 사용할 수 있습니다.]]></value>
|
||||
<value xml:lang="en"><![CDATA[If checked, the content extra vars function will be enabled.]]></value>
|
||||
</item>
|
||||
<item name="about_use_skin_extra_vars">
|
||||
<value xml:lang="ko"><![CDATA[선택하면 스킨 확장변수를 사용할 수 있습니다.]]></value>
|
||||
<value xml:lang="en"><![CDATA[If checked, the skin extra vars function will be enabled.]]></value>
|
||||
</item>
|
||||
<item name="about_use_mobile_skin_extra_vars">
|
||||
<value xml:lang="ko"><![CDATA[선택하면 모바일 스킨 확장변수를 사용할 수 있습니다.]]></value>
|
||||
<value xml:lang="en"><![CDATA[If checked, the mobile skin extra vars function will be enabled.]]></value>
|
||||
</item>
|
||||
<item name="about_list_count">
|
||||
<value xml:lang="ko"><![CDATA[한 페이지에 표시될 글 수를 지정할 수 있습니다. (기본 20개)]]></value>
|
||||
<value xml:lang="en"><![CDATA[You can limit the number of article to show on one page. The default is 20.]]></value>
|
||||
|
|
|
|||
|
|
@ -11,7 +11,7 @@
|
|||
<label class="x_control-label">{$lang->enable_trackback}</label>
|
||||
<div class="x_controls">
|
||||
<label for="trackback_y" class="x_inline"><input type="radio" name="enable_trackback" id="trackback_y" value="Y" checked="checked"|cond="$trackback_config->enable_trackback == 'Y'" /> {$lang->yes}</label>
|
||||
<label for="trackback_n" class="x_inline"><input type="radio" name="enable_trackback" id="trackback_n" value="N" checked="checked"|cond="$trackback_config->enable_trackback != 'Y'" /> {$lang->no}</label>
|
||||
<label for="trackback_n" class="x_inline"><input type="radio" name="enable_trackback" id="trackback_n" value="N" checked="checked"|cond="$trackback_config->enable_trackback != 'Y'" /> {$lang->not}</label>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue