diff options
Diffstat (limited to '')
-rw-r--r-- | themes/default/template/search.tpl | 4 | ||||
-rw-r--r-- | themes/default/theme.css | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/themes/default/template/search.tpl b/themes/default/template/search.tpl index 3ddad7378..b9d712cee 100644 --- a/themes/default/template/search.tpl +++ b/themes/default/template/search.tpl @@ -51,7 +51,7 @@ jQuery(document).ready(function() { <fieldset> <legend>{'Search for Author'|@translate}</legend> <p> - <select id="authors" placeholder="{'Type in a search term'|translate}" name="authors[]" multiple style="width:500px;"> + <select id="authors" placeholder="{'Type in a search term'|translate}" name="authors[]" multiple> {foreach from=$AUTHORS item=author} <option value="{$author.author|strip_tags:false|escape:html}">{$author.author|strip_tags:false} ({$author.counter|translate_dec:'%d photo':'%d photos'})</option> {/foreach} @@ -63,7 +63,7 @@ jQuery(document).ready(function() { <fieldset> <legend>{'Search tags'|@translate}</legend> <p> - <select id="tags" placeholder="{'Type in a search term'|translate}" name="tags[]" multiple style="width:500px;"> + <select id="tags" placeholder="{'Type in a search term'|translate}" name="tags[]" multiple> {foreach from=$TAGS item=tag} <option value="{$tag.id}">{$tag.name} ({$tag.counter|translate_dec:'%d photo':'%d photos'})</option> {/foreach} diff --git a/themes/default/theme.css b/themes/default/theme.css index 99e586b10..f31d7a31e 100644 --- a/themes/default/theme.css +++ b/themes/default/theme.css @@ -536,7 +536,7 @@ FIELDSET { line-height:20px; } -.filter input[name="search_allwords"] { +.filter input[name="search_allwords"], .filter #authors, .filter #tags { width:500px; } |