]> source.dussan.org Git - redmine.git/commitdiff
Add download icon to download links on file and repo entry preview (#25999).
authorJean-Philippe Lang <jp_lang@yahoo.fr>
Sat, 10 Jun 2017 08:41:07 +0000 (08:41 +0000)
committerJean-Philippe Lang <jp_lang@yahoo.fr>
Sat, 10 Jun 2017 08:41:07 +0000 (08:41 +0000)
Patch by Jan Schulz-Hofen.

git-svn-id: http://svn.redmine.org/redmine/trunk@16647 e93f8b46-1217-0410-a6f0-8f06a7374b81

app/views/layouts/_file.html.erb
app/views/repositories/_link_to_functions.html.erb

index 7bb939a4c0ad43652154aa782ecb69869756287f..24bfd18433c8ee220a81ee64e72e81d615b087cf 100644 (file)
@@ -3,7 +3,7 @@
 <div class="attachments">
 <p><%= "#{@attachment.description} - " unless @attachment.description.blank? %>
    <span class="author"><%= link_to_user(@attachment.author) %>, <%= format_time(@attachment.created_on) %></span></p>
-<p><%= link_to_attachment @attachment, :text => l(:button_download), :download => true -%>
+<p><%= link_to_attachment @attachment, :text => l(:button_download), :download => true, :class => 'icon icon-download' -%>
    <span class="size">(<%= number_to_human_size @attachment.filesize %>)</span></p>
 </div>
 <%= yield %>
index 53a5acc40af62d5ccd6bff42fbcf65ec06558d1a..edb5e84a5cc6b0b008ed5424e7b25ed3c92ecd48 100644 (file)
@@ -12,7 +12,7 @@
             {:action => 'raw', :id => @project,
              :repository_id => @repository.identifier_param,
              :path => to_path_param(@path),
-             :rev => @rev}) if @repository.supports_cat? %>
+             :rev => @rev}, class: 'icon icon-download') if @repository.supports_cat? %>
 <%= "(#{number_to_human_size(@entry.size)})" if @entry.size %>
 </p>