diff options
author | Sunil Joshi <joshi_sunil@in.com> | 2013-09-04 02:00:50 +0200 |
---|---|---|
committer | Simon Green <sgreen@redhat.com> | 2013-09-04 02:00:50 +0200 |
commit | 6098f29728efd1b3de09b3f7e6df4ab289167787 (patch) | |
tree | 017b17efb2fa2f78f9c7a961b6be9c85ad9abb6e | |
parent | 41eda66a29eea7fffe23508ecff6857bd951fcad (diff) | |
download | bugzilla-6098f29728efd1b3de09b3f7e6df4ab289167787.tar.gz bugzilla-6098f29728efd1b3de09b3f7e6df4ab289167787.tar.xz |
Bug 606509 - Text badly aligned for "deadline" and "bug numbered" in the search page
r=simon, a=simon
-rw-r--r-- | skins/standard/search_form.css | 4 | ||||
-rw-r--r-- | template/en/default/search/form.html.tmpl | 12 |
2 files changed, 11 insertions, 5 deletions
diff --git a/skins/standard/search_form.css b/skins/standard/search_form.css index ff97dbcbc..0381730af 100644 --- a/skins/standard/search_form.css +++ b/skins/standard/search_form.css @@ -91,6 +91,10 @@ text-align: right; } +.field_label_sup { + font-weight: normal; +} + #summary_field.search_field_row { width: inherit; } diff --git a/template/en/default/search/form.html.tmpl b/template/en/default/search/form.html.tmpl index 26bf7f06e..fcb038638 100644 --- a/template/en/default/search/form.html.tmpl +++ b/template/en/default/search/form.html.tmpl @@ -170,11 +170,13 @@ TUI_hide_default('information_query'); value="[% default.bug_id.0 FILTER html %]" size="20"> <div class="field_help">(comma-separated list)</div> </div> - should be - <select name="bug_id_type" id="bug_id_type"> - <option value="anyexact"[% " selected" IF default.bug_id_type.0 == "anyexact" %]>only included in</option> - <option value="nowords"[% " selected" IF default.bug_id_type.0 == "nowords" %]>excluded from</option> - </select> the results + <span class="field_label field_label_sup"> + should be + <select name="bug_id_type" id="bug_id_type"> + <option value="anyexact"[% " selected" IF default.bug_id_type.0 == "anyexact" %]>only included in</option> + <option value="nowords"[% " selected" IF default.bug_id_type.0 == "nowords" %]>excluded from</option> + </select> the results + </span> </div> [% Hook.process('after_freetext_fields') %] |