diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2012-10-27 08:35:19 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2012-10-27 08:35:19 +0000 |
commit | 29a474b641d50c627263d7aa0bfc681d12d94c8d (patch) | |
tree | 81933ea3de8c59c124359b23722e6e948345cec5 /app/views/issues/show.html.erb | |
parent | 8a2786c91e528138ba91037791a02889b7ebdcb1 (diff) | |
download | redmine-29a474b641d50c627263d7aa0bfc681d12d94c8d.tar.gz redmine-29a474b641d50c627263d7aa0bfc681d12d94c8d.zip |
Wrap issue description and its contextual menu in a div (#12211).
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@10728 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/issues/show.html.erb')
-rw-r--r-- | app/views/issues/show.html.erb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/app/views/issues/show.html.erb b/app/views/issues/show.html.erb index 308f93b61..c41b7b790 100644 --- a/app/views/issues/show.html.erb +++ b/app/views/issues/show.html.erb @@ -71,6 +71,7 @@ end %> <% if @issue.description? || @issue.attachments.any? -%> <hr /> <% if @issue.description? %> +<div class="description"> <div class="contextual"> <%= link_to l(:button_quote), {:controller => 'journals', :action => 'new', :id => @issue}, @@ -83,6 +84,7 @@ end %> <div class="wiki"> <%= textilizable @issue, :description, :attachments => @issue.attachments %> </div> +</div> <% end %> <%= link_to_attachments @issue, :thumbnails => true %> <% end -%> |