diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2010-02-28 16:42:31 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2010-02-28 16:42:31 +0000 |
commit | c9197769fb06332f4f878ce84b5c516c43c215e0 (patch) | |
tree | 7f8d1234fe543ad365a2b34bc99d0300b5da5116 | |
parent | da84474391280bdd6004231ac71bdc26a5502936 (diff) | |
download | redmine-c9197769fb06332f4f878ce84b5c516c43c215e0.tar.gz redmine-c9197769fb06332f4f878ce84b5c516c43c215e0.zip |
Fixes bottom links placement in issue with associated changesets (#4883).
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@3516 e93f8b46-1217-0410-a6f0-8f06a7374b81
-rw-r--r-- | app/views/issues/show.rhtml | 3 | ||||
-rw-r--r-- | public/stylesheets/application.css | 2 |
2 files changed, 3 insertions, 2 deletions
diff --git a/app/views/issues/show.rhtml b/app/views/issues/show.rhtml index 6c83c44fb..b78908b00 100644 --- a/app/views/issues/show.rhtml +++ b/app/views/issues/show.rhtml @@ -87,10 +87,11 @@ </div> <% end %> -<%= render :partial => 'action_menu', :locals => {:replace_watcher => 'watcher2' } %> <div style="clear: both;"></div> +<%= render :partial => 'action_menu', :locals => {:replace_watcher => 'watcher2' } %> +<div style="clear: both;"></div> <% if authorize_for('issues', 'edit') %> <div id="update" style="display:none;"> <h3><%= l(:button_update) %></h3> diff --git a/public/stylesheets/application.css b/public/stylesheets/application.css index 577cdb29f..baf5bd25e 100644 --- a/public/stylesheets/application.css +++ b/public/stylesheets/application.css @@ -67,7 +67,7 @@ h4, .wiki h3 {font-size: 13px;padding: 2px 10px 1px 0px;margin-bottom: 5px; bord #main {background-color:#EEEEEE;} -#sidebar{ float: right; width: 17%; position: relative; z-index: 9; min-height: 600px; padding: 0; margin: 0;} +#sidebar{ float: right; width: 17%; position: relative; z-index: 9; padding: 0; margin: 0;} * html #sidebar{ width: 17%; } #sidebar h3{ font-size: 14px; margin-top:14px; color: #666; } #sidebar hr{ width: 100%; margin: 0 auto; height: 1px; background: #ccc; border: 0; } |