diff options
author | guy.pyrzak%gmail.com <> | 2008-11-20 02:13:24 +0100 |
---|---|---|
committer | guy.pyrzak%gmail.com <> | 2008-11-20 02:13:24 +0100 |
commit | d66d351c88c9dded446cc1b3546d47a0f12b6b87 (patch) | |
tree | 097cb311f6645299f3c64896cec632d0e80256a1 | |
parent | 1c61f36f83ed6818b7b1f181400ffea6bc270a70 (diff) | |
download | bugzilla-d66d351c88c9dded446cc1b3546d47a0f12b6b87.tar.gz bugzilla-d66d351c88c9dded446cc1b3546d47a0f12b6b87.tar.xz |
Bug 464732: There is no label next to the Status drop-down
Patch By Guy Pyrzak<guy.pyrzak@gmail.com> r=mkanat, a=mkanat
-rw-r--r-- | skins/standard/show_bug.css | 4 | ||||
-rw-r--r-- | template/en/default/bug/edit.html.tmpl | 15 |
2 files changed, 16 insertions, 3 deletions
diff --git a/skins/standard/show_bug.css b/skins/standard/show_bug.css index 4fded9a95..e21cad1b8 100644 --- a/skins/standard/show_bug.css +++ b/skins/standard/show_bug.css @@ -65,3 +65,7 @@ #status { margin-bottom: 3ex; } + +#knob-buttons { + float: right; +} diff --git a/template/en/default/bug/edit.html.tmpl b/template/en/default/bug/edit.html.tmpl index 0aacca98f..9eecb0213 100644 --- a/template/en/default/bug/edit.html.tmpl +++ b/template/en/default/bug/edit.html.tmpl @@ -239,7 +239,7 @@ <br> <table cellpadding="1" cellspacing="1"> <tr> - <td> + <td id="comment_status_commit"> [% IF user.id %] <label for="comment" accesskey="c"><b>Additional <u>C</u>omments</b></label>: [% IF Param("insidergroup") && user.in_group(Param("insidergroup")) %] @@ -258,14 +258,23 @@ cols = constants.COMMENT_COLS %] <br> - <a name="bug_status_bottom"></a> - [% PROCESS bug/knob.html.tmpl %] <div id="knob-buttons"> <input type="submit" value="Commit" id="commit"> [% IF bug.user.canmove %] <input type="submit" name="action" id="action" value="[% Param("move-button-text") %]"> [% END %] </div> + <table class="status"> + <tr> + <td class="field_label"> + <b><a href="page.cgi?id=fields.html#status">Status</a></b>: + </td> + <td> + <a name="bug_status_bottom"></a> + [% PROCESS bug/knob.html.tmpl %] + </td> + </tr> + </table> [% ELSE %] <fieldset> <legend>Note</legend> |