aboutsummaryrefslogtreecommitdiffstats
path: root/themes/default
diff options
context:
space:
mode:
authorplegall <plg@piwigo.org>2014-06-16 13:53:16 +0000
committerplegall <plg@piwigo.org>2014-06-16 13:53:16 +0000
commit0511ed2236b1fab9bc9c23b6c3bbee82ee4efdb5 (patch)
tree39d968320efbfd7f6ff79843a47cbac3cf49a21b /themes/default
parentaacdb5a8bd5ed9936bc6d44a60b8b86a4e12283c (diff)
feature 3091: search.php (advanced search), display a list of known authors instead of a text field.
git-svn-id: http://piwigo.org/svn/trunk@28707 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'themes/default')
-rw-r--r--themes/default/template/search.tpl17
-rw-r--r--themes/default/theme.css1
2 files changed, 16 insertions, 2 deletions
diff --git a/themes/default/template/search.tpl b/themes/default/template/search.tpl
index 56c142182..09257ef96 100644
--- a/themes/default/template/search.tpl
+++ b/themes/default/template/search.tpl
@@ -3,6 +3,17 @@
{include file='include/resize.inc.tpl'}
*}
+{combine_script id='jquery.selectize' load='footer' path='themes/default/js/plugins/selectize.min.js'}
+{combine_css id='jquery.selectize' path="themes/default/js/plugins/selectize.dark.css"}
+
+{footer_script}
+jQuery(document).ready(function() {
+ jQuery("#authors").selectize({
+ plugins: ['remove_button']
+ });
+});
+{/footer_script}
+
{if isset($MENUBAR)}{$MENUBAR}{/if}
<div id="content" class="content{if isset($MENUBAR)} contentWithMenu{/if}">
@@ -33,7 +44,11 @@
</label></li>
</ul>
<label>{'Search for Author'|@translate}
- <input type="text" name="search_author" size="35">
+ <select id="authors" placeholder="{'Type in a search term'|translate}" name="authors[]" multiple style="width:500px;">
+{foreach from=$AUTHORS item=author}
+ <option value="{$author.author|strip_tags:false|escape:html}">{$author.author|strip_tags:false} ({'%d photos'|translate:$author.counter})</option>
+{/foreach}
+ </select>
</label>
</fieldset>
diff --git a/themes/default/theme.css b/themes/default/theme.css
index 08114a392..bbf5e4091 100644
--- a/themes/default/theme.css
+++ b/themes/default/theme.css
@@ -507,7 +507,6 @@ SELECT.categoryList {
FIELDSET {
padding: 1em;
margin: 1em;
- overflow: hidden; /* <- makes Opera happy */
}
.filter UL,