]> source.dussan.org Git - redmine.git/commitdiff
Slight change to issues/show.
authorJean-Philippe Lang <jp_lang@yahoo.fr>
Mon, 24 Sep 2007 19:26:09 +0000 (19:26 +0000)
committerJean-Philippe Lang <jp_lang@yahoo.fr>
Mon, 24 Sep 2007 19:26:09 +0000 (19:26 +0000)
git-svn-id: http://redmine.rubyforge.org/svn/trunk@762 e93f8b46-1217-0410-a6f0-8f06a7374b81

app/views/attachments/_links.rhtml
app/views/issues/show.rhtml
public/stylesheets/application.css

index afae91a7bc999b9a8e2d6eee62046f6e028ed281..cce11292eb9513d9b7cf795ac96f37119afa4ae4 100644 (file)
@@ -3,7 +3,7 @@
   <p><%= link_to attachment.filename, {:controller => 'attachments', :action => 'download', :id => attachment }, :class => 'icon icon-attachment' %>
   (<%= number_to_human_size attachment.filesize %>)
   <% unless options[:no_author] %>
-    <em><%= attachment.author.name %>, <%= format_date(attachment.created_on) %></em>
+    <span class="author"><%= attachment.author.name %>, <%= format_date(attachment.created_on) %></span>
   <% end %>
   <% if options[:delete_url] %>
     <%= link_to image_tag('delete.png'), options[:delete_url].update({:attachment_id => attachment}), :confirm => l(:text_are_you_sure), :method => :post %>
index de9e38bb9746794b04422bcc74c9a6856b2eb6d3..593fdad10035cc0f8427ac4b0cefa87f18197008 100644 (file)
@@ -62,9 +62,13 @@ end %>
 </div>
 <% end %>
 
-<p><b><%=l(:field_description)%></b></p>
+<p><strong><%=l(:field_description)%></strong></p>
 <%= textilizable @issue.description, :attachments => @issue.attachments %>
 
+<% if @issue.attachments.any? %>
+<%= link_to_attachments @issue.attachments, :delete_url => (authorize_for('issues', 'destroy_attachment') ? {:controller => 'issues', :action => 'destroy_attachment', :id => @issue} : nil) %>
+<% end %>
+
 <% if authorize_for('issue_relations', 'new') || @issue.relations.any? %>
 <hr />
 <div id="relations">
@@ -72,10 +76,6 @@ end %>
 </div>
 <% end %>
 
-<% if @issue.attachments.any? %>
-<%= link_to_attachments @issue.attachments, :delete_url => (authorize_for('issues', 'destroy_attachment') ? {:controller => 'issues', :action => 'destroy_attachment', :id => @issue} : nil) %>
-<% end %>
-
 </div>
 
 <% if authorize_for('issues', 'change_status') and @status_options and !@status_options.empty? %>
index 1f030cfbd6c1c50418964d61c822bb8cdbd68b0d..af79e9b10a6954a3d57b74230be1606e76d2a9fa 100644 (file)
@@ -131,6 +131,8 @@ margin*/
 .required {color: #bb0000;}
 .summary {font-style: italic;}
 
+div.attachments p { margin:4px 0 2px 0; }
+
 /***** Flash & error messages ****/
 #flash div, #errorExplanation, .nodata {
     padding: 4px 4px 4px 30px;