Move select label(first option) to title attribute.

git-svn-id: http://xe-core.googlecode.com/svn/branches/maserati@12038 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
ChanMyeong 2012-11-02 06:54:43 +00:00
parent 5589aed53a
commit ab8cd6f262
14 changed files with 50 additions and 91 deletions

View file

@ -1,26 +1,23 @@
<load target="js/page_admin.js" usecdn="true" />
<!--#include("header.html")-->
<include target="header.html" />
<!-- 검색 -->
<form action="./" method="get" class="search center x_input-append">
<form action="./" method="get" class="search x_input-append x_pull-right" style="margin-bottom:-28px">
<input type="hidden" name="module" value="{$module}" />
<input type="hidden" name="mid" value="{$mid}" />
<input type="hidden" name="vid" value="{$vid}" />
<input type="hidden" name="act" value="dispPageAdminContent" />
<select name="module_category_srl" style="margin-right:3px">
<option value="">{$lang->module_category}</option>
<select name="module_category_srl" title="{$lang->module_category}" style="margin-right:3px">
<option value="0" <!--@if($module_category_srl==="0")-->selected="selected"<!--@end-->>{$lang->not_exists}</option>
<!--@foreach($module_category as $key => $val)-->
<option value="{$key}" <!--@if($module_category_srl==$key)-->selected="selected"<!--@end-->>{$val->title}</option>
<!--@end-->
<option value="">---------</option>
<option value="-1">{$lang->cmd_management}</option>
</select>
<select name="search_target">
<select name="search_target" style="margin-right:3px">
<option value="s_mid" selected="selected"|cond="$search_target=='s_mid'">{$lang->mid}</option>
<option value="s_browser_title" selected="selected"|cond="$search_target=='s_browser_title'">{$lang->browser_title}</option>
</select>
<input type="search" name="search_keyword" title="Search" value="{htmlspecialchars($search_keyword)}" style="width:150px" />
<input type="search" name="search_keyword" title="Search" value="{htmlspecialchars($search_keyword)}" required style="width:150px" />
<button class="x_btn x_btn-inverse" type="submit">{$lang->cmd_search}</button>
</form>