]> 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:50:54 +0000 (20:50 +0000)
committerlpsolit%gmail.com <>
Thu, 31 May 2007 20:50:54 +0000 (20:50 +0000)
skins/standard/global.css
template/en/default/flag/list.html.tmpl

index fe5fd8b0b2bdca7fcceff7643751a74c0072ec0c..e336f67f21cec8621c4e1cb44480b929390b9268 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>