Allow advanced search bool selectors to size down
authorBill Erickson <berick@esilibrary.com>
Tue, 2 Aug 2011 14:38:14 +0000 (10:38 -0400)
committerBill Erickson <berick@esilibrary.com>
Tue, 2 Aug 2011 14:38:14 +0000 (10:38 -0400)
... to avoid unnecessary horizontal screen gobbling

Tested in Chrome, FF, and IE

Signed-off-by: Bill Erickson <berick@esilibrary.com>
Open-ILS/web/templates/default/opac/parts/advanced/global_row.tt2

index 3e5dec5..071ab66 100644 (file)
@@ -19,7 +19,7 @@
     <td align='left' width='100%' nowrap='nowrap'>
 
         <!-- bool selector.  hide for first row.  safe to ignore first bool value in form submission -->
-        <select name='bool' [% IF loop.first %] class='invisible' [% END %]>
+        <select name='bool' style='width: auto' [% IF loop.first %] class='invisible' [% END %]>
             <option value='and' [% b == 'and' ? 'selected="selected"' : '' %]>[% l('And') %]</option>
             <option value='or' [% b == 'or' ? 'selected="selected"' : '' %]>[% l('Or') %]</option>
         </select>