Cosmetic issues.

git-svn-id: http://xe-core.googlecode.com/svn/branches/maserati@12556 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
ChanMyeong 2013-01-15 05:40:19 +00:00
parent 1add50bc89
commit 04206e9b86
16 changed files with 101 additions and 94 deletions

View file

@ -39,7 +39,7 @@
</div>
</div>
</section>
<section class="section collapse">
<section class="section collapse" style="margin-bottom:0">
<h1>{$lang->subtitle_advanced}</h1>
<div class="x_control-group">
<label class="x_control-label" for="ftp_host">{$lang->ftp_host}</label>
@ -54,7 +54,7 @@
</div>
</div>
<div class="x_control-group">
<p class="x_control-label">{$lang->use_ftp_passive_mode}</p>
<div class="x_control-label">{$lang->use_ftp_passive_mode}</div>
<div class="x_controls">
<label class="x_inline" for="ftp_passive_y">
<input type="radio" name="ftp_pasv" id="ftp_passive_y" value="Y" checked="checked"|cond="$ftp_info->ftp_pasv == 'Y'" />
@ -75,7 +75,7 @@
</div>
</div>
</section>
<div class="btnArea">
<div class="btnArea" style="margin-top:0">
<input type="submit" value="{$lang->cmd_save}" class="x_btn x_btn-primary x_pull-right" />
</div>
</form>

View file

@ -90,8 +90,8 @@
<img src="{$favicon_url}" alt="favicon" width="16" height="16" class="fn1">
<img src="{$favicon_url}" alt="favicon Image" width="16" height="16" class="fn2">
</p>
<input type="checkbox" name="is_delete_favicon" value="1" /> {$lang->cmd_delete}
<input type="file" name="favicon" id="favicon" title="favicon" />
<label><input type="checkbox" name="is_delete_favicon" value="1" /> {$lang->cmd_delete}</label>
<label><input type="file" name="favicon" id="favicon" title="favicon" /></label>
<span class="x_help-block">{$lang->about_use_favicon}</span>
</div>
</div>
@ -102,8 +102,8 @@
<img src="{$mobicon_url}" alt="Mobile Home Icon" width="32" height="32" />
<span>www</span>
</p>
<input type="checkbox" name="is_delete_mobicon" value="1" /> {$lang->cmd_delete}
<input type="file" name="mobicon" id="mobicon" title="Mobile Home Icon"/>
<label><input type="checkbox" name="is_delete_mobicon" value="1" /> {$lang->cmd_delete}</label>
<label><input type="file" name="mobicon" id="mobicon" title="Mobile Home Icon"/></label>
<span class="x_help-block">{$lang->detail_use_mobile_icon}</span>
</div>
</div>
@ -128,7 +128,7 @@
<div class="x_control-group">
<label class="x_control-label" for="default_url">{$lang->default_url} <a class="x_icon-question-sign" href="./help/index.html#UMAN_config_general_default_url" target="_blank">{$lang->help}</a></label>
<div class="x_controls">
<input type="text" name="default_url" id="default_url" value="{$default_url}"/>
<input type="url" name="default_url" id="default_url" value="{$default_url}"/>
</div>
</div>
<div class="x_control-group">
@ -142,8 +142,8 @@
<div class="x_control-group">
<label class="x_control-label">{$lang->server_ports}</label>
<div class="x_controls">
<label for="http_port" class="x_inline">HTTP: <input type="number" name="http_port" id="http_port" size="5" value="{$http_port}" style="width:50px" /></label>
<label for="https_port" class="x_inline">HTTPS: <input type="number" name="https_port" id="https_port" size="5" value="{$https_port}" style="width:50px" /></label>
<label for="http_port" class="x_inline" style="margin-bottom:0;padding-top:0">HTTP: <input type="number" name="http_port" id="http_port" size="5" value="{$http_port}" style="width:50px" /></label>
<label for="https_port" class="x_inline" style="margin-bottom:0;padding-top:0">HTTPS: <input type="number" name="https_port" id="https_port" size="5" value="{$https_port}" style="width:50px" /></label>
</div>
</div>
<div class="x_control-group" cond="__XE_CDN_VERSION__!='%__XE_CDN_VERSION__%'">

View file

@ -92,7 +92,7 @@ body>.x,
.x .x_form-horizontal .x_control-label{font-weight:bold;word-break:keep-all}
.x .x_form-horizontal .x_control-label{width:180px}
.x .x_form-horizontal .x_controls{margin-left:200px}
.x .x_form-horizontal .x_controls label{padding-top:5px}
.x .x_form-horizontal .x_controls label{padding:5px 0;margin-bottom:0}
.x input[type="radio"]+label,
.x input[type="checkbox"]+label{font-weight:normal}
.x label.x_inline{margin-right:16px}
@ -171,7 +171,7 @@ body>.x,
.x .search>input[type="search"]{height:16px;line-height:16px;width:120px}
.x .vr{color:#ccc;font-style:normal}
.x .nowr{white-space:nowrap}
.x .btnArea{padding:10px 0;margin:20px 0;border-top:1px solid #ccc}
.x .btnArea{padding:10px 0;margin:10px 0;border-top:1px solid #ccc}
.x li.active>a,
.x a.active{color:#000;font-weight:bold;text-decoration:none}
.x .module_search+[readonly]{vertical-align:top;border-top-right-radius:0;border-bottom-right-radius:0}

File diff suppressed because one or more lines are too long

View file

@ -1413,12 +1413,12 @@ jQuery(function($){
});
var details = $('.x .dsTg td.tg>*:not(:first-child)');
simpleBtn.click(function(){
details.slideUp(200);
details.hide();
detailBtn.removeClass('x_active');
simpleBtn.addClass('x_active');
});
detailBtn.click(function(){
details.slideDown(200);
details.show();
detailBtn.addClass('x_active');
simpleBtn.removeClass('x_active');
});

File diff suppressed because one or more lines are too long