// Improve BO design with chosen on options and forms

git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@13334 b9a71923-0436-4b27-9f14-aed3839534dd
This commit is contained in:
rMalie
2012-02-15 10:36:53 +00:00
parent 97c7e11df0
commit b4ae6e555c
4 changed files with 13 additions and 11 deletions
+3 -3
View File
@@ -155,7 +155,7 @@
</span>
<div id="header_search">
<form method="post" action="index.php?controller=AdminSearch&token={getAdminToken tab='AdminSearch'}">
<select name="bo_search_type" id="bo_search_type">
<select name="bo_search_type" id="bo_search_type" class="chosen">
<option value="0">{l s='everywhere'}</option>
<option value="1" {if {$search_type} == 1} selected="selected" {/if}>{l s='catalog'}</option>
<optgroup label="{l s='customers'}:">
@@ -180,10 +180,10 @@
else location.href = eltVal;
}
</script>
<select onchange="quickSelect(this);" id="quick_select">
<select onchange="quickSelect(this);" id="quick_select" class="chosen">
<option value="0">{l s='Quick Access'}</option>
{foreach $quick_access as $quick}
<option value="{$quick.link}{if $quick.new_window}_blank{/if}">&gt; {$quick.name}</option>
<option value="{$quick.link}{if $quick.new_window}_blank{/if}">&raquo; {$quick.name}</option>
{/foreach}
</select>
</div>