From 7aeebede74fcd5e8ff1f74c09d6fda7d8473896d Mon Sep 17 00:00:00 2001 From: Marius Balteanu Date: Thu, 5 Sep 2024 20:35:12 +0000 Subject: Replaces more icons with SVG icongs (#23980). git-svn-id: https://svn.redmine.org/redmine/trunk@23021 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- app/views/messages/show.html.erb | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'app/views/messages') diff --git a/app/views/messages/show.html.erb b/app/views/messages/show.html.erb index ba22f713c..64c69a0fe 100644 --- a/app/views/messages/show.html.erb +++ b/app/views/messages/show.html.erb @@ -35,7 +35,7 @@ <% unless @replies.empty? %>
-

<%= l(:label_reply_plural) %> (<%= @reply_count %>)

+

<%= icon_with_label('comments', l(:label_reply_plural)) %> (<%= @reply_count %>)

<% if !@topic.locked? && authorize_for('messages', 'reply') && @replies.size >= 3 %>

<%= toggle_link l(:button_reply), "reply", :focus => 'message_content', :scroll => "message_content" %>

<% end %> @@ -43,7 +43,7 @@
">
<%= link_to( - '', + icon_with_label('comment', l(:button_quote), icon_only: true), {:action => 'quote', :id => message}, :remote => true, :method => 'get', @@ -51,13 +51,13 @@ :class => 'icon icon-comment' ) if !@topic.locked? && authorize_for('messages', 'reply') %> <%= link_to( - '', + icon_with_label('edit', l(:button_edit), icon_only: true), {:action => 'edit', :id => message}, :title => l(:button_edit), :class => 'icon icon-edit' ) if message.editable_by?(User.current) %> <%= link_to( - '', + icon_with_label('del', l(:button_delete), icon_only: true), {:action => 'destroy', :id => message}, :method => :post, :data => {:confirm => l(:text_are_you_sure)}, -- cgit v1.2.3