From fdb2d9936ae815b09d20e156d4a77f525fe199c3 Mon Sep 17 00:00:00 2001 From: Jan Schulz-Hofen Date: Thu, 18 May 2017 12:11:38 +0200 Subject: [PATCH 2/4] Add download icon to download links on file and repo entry preview --- app/views/layouts/_file.html.erb | 2 +- app/views/repositories/_link_to_functions.html.erb | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app/views/layouts/_file.html.erb b/app/views/layouts/_file.html.erb index 7bb939a..24bfd18 100644 --- a/app/views/layouts/_file.html.erb +++ b/app/views/layouts/_file.html.erb @@ -3,7 +3,7 @@

<%= "#{@attachment.description} - " unless @attachment.description.blank? %> <%= link_to_user(@attachment.author) %>, <%= format_time(@attachment.created_on) %>

-

<%= link_to_attachment @attachment, :text => l(:button_download), :download => true -%> +

<%= link_to_attachment @attachment, :text => l(:button_download), :download => true, :class => 'icon icon-download' -%> (<%= number_to_human_size @attachment.filesize %>)

<%= yield %> diff --git a/app/views/repositories/_link_to_functions.html.erb b/app/views/repositories/_link_to_functions.html.erb index 53a5acc..edb5e84 100644 --- a/app/views/repositories/_link_to_functions.html.erb +++ b/app/views/repositories/_link_to_functions.html.erb @@ -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 %>

-- 2.7.2