diff options
author | Dave Lawrence <dlawrence@mozilla.com> | 2012-01-12 00:06:44 +0100 |
---|---|---|
committer | Dave Lawrence <dlawrence@mozilla.com> | 2012-01-12 00:06:44 +0100 |
commit | 5861a13649c61de6b66c876ac1ea1faa8afd51c5 (patch) | |
tree | 65739d69dda873f2884c8f925a8a4ad78a0e7324 | |
parent | d67ed6078ec039fad57b6e87f4a08f5361b47666 (diff) | |
download | bugzilla-5861a13649c61de6b66c876ac1ea1faa8afd51c5.tar.gz bugzilla-5861a13649c61de6b66c876ac1ea1faa8afd51c5.tar.xz |
Bug 716059 - Labels should be right aligned in bug view
r=glob
-rw-r--r-- | skins/custom/global.css | 4 | ||||
-rw-r--r-- | skins/custom/show_bug.css | 3 | ||||
-rw-r--r-- | template/en/default/bug/edit.html.tmpl | 7 |
3 files changed, 5 insertions, 9 deletions
diff --git a/skins/custom/global.css b/skins/custom/global.css index b2cbcc397..8f233e556 100644 --- a/skins/custom/global.css +++ b/skins/custom/global.css @@ -30,10 +30,6 @@ pre { font-size: medium; } -.field_label { - text-align: left; -} - #attachment_table { width: 50em; } diff --git a/skins/custom/show_bug.css b/skins/custom/show_bug.css index 2d3e4995f..97a4f929b 100644 --- a/skins/custom/show_bug.css +++ b/skins/custom/show_bug.css @@ -69,3 +69,6 @@ cursor: help; } +.edit_form table td:first-child { + width: 0px; +} diff --git a/template/en/default/bug/edit.html.tmpl b/template/en/default/bug/edit.html.tmpl index fd13d4250..eb6a3a446 100644 --- a/template/en/default/bug/edit.html.tmpl +++ b/template/en/default/bug/edit.html.tmpl @@ -887,13 +887,10 @@ [% END %] [% IF show_bug_flags %] <tr> - <td class="field_label flags_label"> + <td class="field_label"> <label><b>Flags:</b></label> </td> - <td></td> - </tr> - <tr> - <td colspan="2"> + <td> [% IF bug.flag_types.size > 0 %] [% PROCESS "flag/list.html.tmpl" flag_no_header = 1 flag_types = bug.flag_types |