diff options
author | Guy Pyrzak <guypyrzak@guyah> | 2010-03-03 16:36:45 +0100 |
---|---|---|
committer | Guy Pyrzak <guypyrzak@guyah> | 2010-03-03 16:36:45 +0100 |
commit | 91864ee4f8355f4932afb0e8be4f576d464a71c3 (patch) | |
tree | aadb28dc30aaf0996185f4ef0ece9e6581209382 | |
parent | 9b24ebbcb31958a5217a23cbf30794df7bb5360a (diff) | |
download | bugzilla-91864ee4f8355f4932afb0e8be4f576d464a71c3.tar.gz bugzilla-91864ee4f8355f4932afb0e8be4f576d464a71c3.tar.xz |
fix for button
-rw-r--r-- | skins/standard/attachment.css | 2 | ||||
-rw-r--r-- | template/en/default/attachment/edit.html.tmpl | 10 |
2 files changed, 6 insertions, 6 deletions
diff --git a/skins/standard/attachment.css b/skins/standard/attachment.css index 081f5ccb7..f12d9b682 100644 --- a/skins/standard/attachment.css +++ b/skins/standard/attachment.css @@ -205,7 +205,6 @@ textarea.bz_private { #update { clear: both; - padding: 1.5em 0; display: block; } @@ -215,6 +214,7 @@ textarea { div#update_container { clear: both; + padding: 1.5em 0; } #attachment_flags { diff --git a/template/en/default/attachment/edit.html.tmpl b/template/en/default/attachment/edit.html.tmpl index 2b533c916..6a98a7f05 100644 --- a/template/en/default/attachment/edit.html.tmpl +++ b/template/en/default/attachment/edit.html.tmpl @@ -268,12 +268,12 @@ %] [% END %] - [% IF user.id %] - <div id="update_container"> - <input type="submit" value="Submit" id="update"> - </div> - [% END %] </div> + [% IF user.id %] + <div id="update_container"> + <input type="submit" value="Submit" id="update"> + </div> + [% END %] </div> </div> </div> |