diff options
author | Guy Pyrzak <guy.pyrzak@gmail.com> | 2010-09-19 01:39:58 +0200 |
---|---|---|
committer | Frédéric Buclin <LpSolit@gmail.com> | 2010-09-19 01:39:58 +0200 |
commit | b493ba43eb4516605f78de11a4f799b56ef55174 (patch) | |
tree | 6512684573d1be04ba09d5fb15d6e8de819e6e08 /template/en/default/global | |
parent | 6aec8ad47e62041e9d72f53a2e043d938ec01eae (diff) | |
download | bugzilla-b493ba43eb4516605f78de11a4f799b56ef55174.tar.gz bugzilla-b493ba43eb4516605f78de11a4f799b56ef55174.tar.xz |
Bug 594947: show_bug text boxes are not 100% width
r/a=mkanat
Diffstat (limited to 'template/en/default/global')
-rw-r--r-- | template/en/default/global/userselect.html.tmpl | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/template/en/default/global/userselect.html.tmpl b/template/en/default/global/userselect.html.tmpl index 5924e0723..9fd2df79d 100644 --- a/template/en/default/global/userselect.html.tmpl +++ b/template/en/default/global/userselect.html.tmpl @@ -20,6 +20,7 @@ # name: mandatory; field name # id: optional; field id # value: optional; default field value/selection + # classes: optional; an array of classes to be added # onchange: optional; onchange attribute value # disabled: optional; if true, the field is disabled # accesskey: optional, input only; accesskey attribute value @@ -34,6 +35,7 @@ [% IF Param("usemenuforusers") %] <select name="[% name FILTER html %]" [% IF id %] id="[% id FILTER html %]" [% END %] + [% IF classes %] class="[% classes.join(' ') FILTER html %]" [% END %] [% IF onchange %] onchange="[% onchange FILTER html %]" [% END %] [% IF disabled %] disabled="[% disabled FILTER html %]" [% END %] [% IF accesskey %] accesskey="[% accesskey FILTER html %]" [% END %] @@ -78,11 +80,13 @@ </select> [% ELSE %] [% IF id && feature_enabled('jsonrpc') %] - <div id="[% id FILTER html %]_autocomplete"> + <div id="[% id FILTER html %]_autocomplete" + [% IF classes %] class="[% classes.join(' ') FILTER html %]" [% END %]> [% END %] <input name="[% name FILTER html %]" value="[% value FILTER html %]" + [% IF classes %] class="[% classes.join(' ') FILTER html %]" [% END %] [% IF onchange %] onchange="[% onchange FILTER html %]" [% END %] [% IF disabled %] disabled="[% disabled FILTER html %]" [% END %] [% IF accesskey %] accesskey="[% accesskey FILTER html %]" [% END %] |