diff options
author | Matt Selsky <selsky@columbia.edu> | 2011-10-03 00:45:22 +0200 |
---|---|---|
committer | Frédéric Buclin <LpSolit@gmail.com> | 2011-10-03 00:45:22 +0200 |
commit | 377e583d5754160efca028f80d69bfc04ea54db8 (patch) | |
tree | ede70000aa29a4314a07269652735b3504ddbc63 /template/en/default/admin/milestones/edit.html.tmpl | |
parent | 613d9ce787fd65d6c186bb76716b3e1a48e1521e (diff) | |
download | bugs-377e583d5754160efca028f80d69bfc04ea54db8.tar bugs-377e583d5754160efca028f80d69bfc04ea54db8.tar.gz bugs-377e583d5754160efca028f80d69bfc04ea54db8.tar.bz2 bugs-377e583d5754160efca028f80d69bfc04ea54db8.tar.xz bugs-377e583d5754160efca028f80d69bfc04ea54db8.zip |
Bug 615636: Labels are badly aligned when editing versions and milestones in admin pages
r/a=LpSolit
Diffstat (limited to 'template/en/default/admin/milestones/edit.html.tmpl')
-rw-r--r-- | template/en/default/admin/milestones/edit.html.tmpl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/template/en/default/admin/milestones/edit.html.tmpl b/template/en/default/admin/milestones/edit.html.tmpl index 6a2be869e..ef4b7fcc4 100644 --- a/template/en/default/admin/milestones/edit.html.tmpl +++ b/template/en/default/admin/milestones/edit.html.tmpl @@ -38,17 +38,17 @@ <table border="0" cellpadding="4" cellspacing="0"> <tr> - <th valign="top"><label for="milestone">Milestone:</label></th> + <th class="field_label"><label for="milestone">Milestone:</label></th> <td><input id="milestone" size="20" maxlength="20" name="milestone" value=" [%- milestone.name FILTER html %]"></td> </tr> <tr> - <th align="right"><label for="sortkey">Sortkey:</label></th> + <th class="field_label"><label for="sortkey">Sortkey:</label></th> <td><input id="sortkey" size="20" maxlength="20" name="sortkey" value=" [%- milestone.sortkey FILTER html %]"></td> </tr> <tr> - <th><label for="isactive">Enabled For [% terms.Bugs %]:</label></th> + <th class="field_label"><label for="isactive">Enabled For [% terms.Bugs %]:</label></th> <td><input id="isactive" name="isactive" type="checkbox" value="1" [% 'checked="checked"' IF milestone.isactive %]></td> </tr> |