diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2017-06-10 08:41:07 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2017-06-10 08:41:07 +0000 |
commit | e0410e7f39faebc80bb8cca2cc6c2e0d16b8e7ae (patch) | |
tree | 4662c79414baf43a126296bfedf610a845409231 /app/views/layouts/_file.html.erb | |
parent | c0daecb52b223bb6548a3e32e28c20d28764f54e (diff) | |
download | redmine-e0410e7f39faebc80bb8cca2cc6c2e0d16b8e7ae.tar.gz redmine-e0410e7f39faebc80bb8cca2cc6c2e0d16b8e7ae.zip |
Add download icon to download links on file and repo entry preview (#25999).
Patch by Jan Schulz-Hofen.
git-svn-id: http://svn.redmine.org/redmine/trunk@16647 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/layouts/_file.html.erb')
-rw-r--r-- | app/views/layouts/_file.html.erb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/layouts/_file.html.erb b/app/views/layouts/_file.html.erb index 7bb939a4c..24bfd1843 100644 --- a/app/views/layouts/_file.html.erb +++ b/app/views/layouts/_file.html.erb @@ -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 %> |