]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Bug 364164: <select> fields for flags are of different widths if you are not in the...
authorlpsolit%gmail.com <>
Thu, 31 May 2007 20:49:39 +0000 (20:49 +0000)
committerlpsolit%gmail.com <>
Thu, 31 May 2007 20:49:39 +0000 (20:49 +0000)
skins/standard/global.css
template/en/default/flag/list.html.tmpl

index 2c26966a46caffc8acdd079a4761d060d52f3e39..5c03f8832b583a23ee30e94a3efc42bbfe7be77f 100644 (file)
@@ -263,6 +263,10 @@ table#flags td {
     text-align: left;
 }
 
+.flag_select {
+    min-width: 3em;
+}
+
 .throw_error {
     background-color: #ff0000;
     color: black;
index 6b75b088c116221b32ccbd67fbbb8a95dbb64fcc..61ecf2dfafba7e461164b14bef1dafc755c7ba9e 100644 (file)
         <td>
           <select id="flag-[% flag.id %]" name="flag-[% flag.id %]" 
                   title="[% type.description FILTER html %]"
-                  onchange="toggleRequesteeField(this);">
+                  onchange="toggleRequesteeField(this);"
+                  class="flag_select">
             [%# Only display statuses the user is allowed to set. %]
             [% IF user.can_request_flag(type) %]
               <option value="X"></option>
           <select id="flag_type-[% type.id %]" name="flag_type-[% type.id %]" 
                   title="[% type.description FILTER html %]"
                   [% " disabled=\"disabled\"" UNLESS user.can_request_flag(type) %]
-                  onchange="toggleRequesteeField(this);">
+                  onchange="toggleRequesteeField(this);"
+                  class="flag_select">
             <option value="X"></option>
             [% IF type.is_requestable && user.can_request_flag(type) %]
               <option value="?">?</option>
         <select id="flag_type-[% type.id %]" name="flag_type-[% type.id %]" 
                 title="[% type.description FILTER html %]"
                 [% " disabled=\"disabled\"" UNLESS user.can_request_flag(type) %]
-                onchange="toggleRequesteeField(this);">
+                onchange="toggleRequesteeField(this);"
+                class="flag_select">
           <option value="X"></option>
           [% IF type.is_requestable && user.can_request_flag(type) %]
             <option value="?">?</option>