Member form manage modal layer UI fixed.

git-svn-id: http://xe-core.googlecode.com/svn/branches/maserati@12426 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
ChanMyeong 2012-12-18 08:48:12 +00:00
parent 33944a164a
commit a6ccf6f4e0
2 changed files with 10 additions and 7 deletions

View file

@ -4,20 +4,20 @@
</div>
<div class="x_modal-body">
<div class="x_control-group">
<label for="column_id" class="x_control-label">{$lang->column_id} *</label>
<label for="column_id" class="x_control-label"><em style="color:red">*</em> {$lang->column_id}</label>
<div class="x_controls">
<input type="text" id="column_id" name="column_id" value="{$formInfo->column_name}" />
<p class="x_help-inline">{$lang->about_column_id}</p>
<p class="x_help-block">{$lang->about_column_id}</p>
</div>
</div>
<div class="x_control-group">
<label for="column_title" class="x_control-label">{$lang->column_title} *</label>
<label for="column_title" class="x_control-label"><em style="color:red">*</em> {$lang->column_title}</label>
<div class="x_controls">
<input type="text" id="column_title" name="column_title" value="{$formInfo->column_title}" />
</div>
</div>
<div class="x_control-group">
<label for="columnType" class="x_control-label">{$lang->column_type} *</label>
<label for="columnType" class="x_control-label"><em style="color:red">*</em> {$lang->column_type}</label>
<div class="x_controls">
<select id="columnType" class="typeSelect" name="column_type">
<option loop="$lang->column_type_list=>$key,$type_info" value="{$key}" selected="selected"|cond="$formInfo->column_type == $key" >{$lang->column_type_list[$key]}</option>
@ -25,7 +25,7 @@
</div>
</div>
<div class="x_control-group multiExample">
<label for="multiSelect" class="x_control-label">{$lang->options} *</label>
<label for="multiSelect" class="x_control-label"><em style="color:red">*</em> {$lang->options}</label>
<div class="x_controls">
<textarea rows="4" cols="42" id="multiSelect" name="default_value" style="vertical-align:top"><block cond="$default_value">{implode('<enter>', $default_value)}</block></textarea>
<p class="x_help-inline">{$lang->about_multi_type}</p>

View file

@ -195,5 +195,8 @@
<div id="extendForm" class="x_form-horizontal">
</div>
</form>
<div>
</div>
<style scoped>
@media all and (min-width:981px){
#userDefine{max-width:60%;margin-left:-30%}
}
</style>