diff options
author | plegall <plg@piwigo.org> | 2014-09-18 10:40:31 +0000 |
---|---|---|
committer | plegall <plg@piwigo.org> | 2014-09-18 10:40:31 +0000 |
commit | 1826f5371461943ac7450d1ac0d06748c5d5409b (patch) | |
tree | fb91002ffe8d8aa1fe4290dc5620e81584f06306 /admin/themes | |
parent | dedcbbefbecf0f4adda9456853aceb05101d72d8 (diff) |
enlarge selectize boxes to 600px (like on picture_modify)
git-svn-id: http://piwigo.org/svn/trunk@29618 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'admin/themes')
-rw-r--r-- | admin/themes/default/template/batch_manager_global.tpl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/admin/themes/default/template/batch_manager_global.tpl b/admin/themes/default/template/batch_manager_global.tpl index dd218cda0..5cc52a575 100644 --- a/admin/themes/default/template/batch_manager_global.tpl +++ b/admin/themes/default/template/batch_manager_global.tpl @@ -346,7 +346,7 @@ var sliders = { <input type="checkbox" name="filter_category_use" class="useFilterCheckbox" {if isset($filter.category)}checked="checked"{/if}> {'Album'|@translate} <select data-selectize="categories" data-value="{$filter_category_selected|@json_encode|escape:html}" - data-default="first" name="filter_category" style="width:400px"></select> + data-default="first" name="filter_category" style="width:600px"></select> <label><input type="checkbox" name="filter_category_recursive" {if isset($filter.category_recursive)}checked="checked"{/if}> {'include child albums'|@translate}</label> </li> @@ -356,7 +356,7 @@ var sliders = { {'Tags'|@translate} <select data-selectize="tags" data-value="{$filter_tags|@json_encode|escape:html}" placeholder="{'Type in a search term'|translate}" - name="filter_tags[]" multiple style="width:400px;"></select> + name="filter_tags[]" multiple style="width:600px;"></select> <label><span><input type="radio" name="tag_mode" value="AND" {if !isset($filter.tag_mode) or $filter.tag_mode eq 'AND'}checked="checked"{/if}> {'All tags'|@translate}</span></label> <label><span><input type="radio" name="tag_mode" value="OR" {if isset($filter.tag_mode) and $filter.tag_mode eq 'OR'}checked="checked"{/if}> {'Any tag'|@translate}</span></label> </li> |