summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--skins/standard/global.css4
-rw-r--r--template/en/default/flag/list.html.tmpl9
2 files changed, 10 insertions, 3 deletions
diff --git a/skins/standard/global.css b/skins/standard/global.css
index 2c26966a4..5c03f8832 100644
--- a/skins/standard/global.css
+++ b/skins/standard/global.css
@@ -263,6 +263,10 @@ table#flags td {
text-align: left;
}
+.flag_select {
+ min-width: 3em;
+}
+
.throw_error {
background-color: #ff0000;
color: black;
diff --git a/template/en/default/flag/list.html.tmpl b/template/en/default/flag/list.html.tmpl
index 6b75b088c..61ecf2dfa 100644
--- a/template/en/default/flag/list.html.tmpl
+++ b/template/en/default/flag/list.html.tmpl
@@ -105,7 +105,8 @@
<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>
@@ -156,7 +157,8 @@
<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>
@@ -199,7 +201,8 @@
<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>