mirror of
https://github.com/Piwigo/Piwigo.git
synced 2026-08-07 17:23:04 +02:00
feature 3091: remove inline CSS (but doesn't work with selectize)
git-svn-id: http://piwigo.org/svn/trunk@28732 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
@@ -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}
|
||||
|
||||
@@ -536,7 +536,7 @@ FIELDSET {
|
||||
line-height:20px;
|
||||
}
|
||||
|
||||
.filter input[name="search_allwords"] {
|
||||
.filter input[name="search_allwords"], .filter #authors, .filter #tags {
|
||||
width:500px;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user