From 021fedeb2a19c73df654f3a9afd7b1cadcbeb75e Mon Sep 17 00:00:00 2001 From: multiple creatures Date: Tue, 16 Apr 2019 14:45:58 -0500 Subject: Replace `fa-retweet` SVG with `fa-repeat` Unicode glyph. --- app/views/admin/reports/_status.html.haml | 2 +- app/views/stream_entries/_detailed_status.html.haml | 2 +- app/views/stream_entries/_simple_status.html.haml | 2 +- app/views/stream_entries/_status.html.haml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) (limited to 'app/views') diff --git a/app/views/admin/reports/_status.html.haml b/app/views/admin/reports/_status.html.haml index b3c145120..cdb914a03 100644 --- a/app/views/admin/reports/_status.html.haml +++ b/app/views/admin/reports/_status.html.haml @@ -23,7 +23,7 @@ %time.formatted{ datetime: status.created_at.iso8601, title: l(status.created_at) }= l(status.created_at) · - if status.reblog? - = fa_icon('retweet fw') + = fa_icon('repeat fw') = t('statuses.boosted_from_html', acct_link: admin_account_inline_link_to(status.proper.account)) - else = fa_visibility_icon(status) diff --git a/app/views/stream_entries/_detailed_status.html.haml b/app/views/stream_entries/_detailed_status.html.haml index 468f03033..042e5d950 100644 --- a/app/views/stream_entries/_detailed_status.html.haml +++ b/app/views/stream_entries/_detailed_status.html.haml @@ -66,7 +66,7 @@ - elsif user_signed_in? && !@account.user&.setting_hide_stats · = link_to remote_interaction_path(status, type: :reblog), class: 'modal-button detailed-status__link', title: number_to_human(status.reblogs_count, strip_insignificant_zeros: true) do - = fa_icon('retweet') + = fa_icon('repeat') = " " - if user_signed_in? && !@account.user&.setting_hide_stats diff --git a/app/views/stream_entries/_simple_status.html.haml b/app/views/stream_entries/_simple_status.html.haml index 4df1a0cdf..d4b919b1a 100644 --- a/app/views/stream_entries/_simple_status.html.haml +++ b/app/views/stream_entries/_simple_status.html.haml @@ -51,7 +51,7 @@ .status__action-bar__counter__label= obscured_counter status.replies_count = link_to remote_interaction_path(status, type: :reblog), class: 'status__action-bar-button icon-button modal-button', style: 'font-size: 18px; width: 23.1429px; height: 23.1429px; line-height: 23.15px;' do - if status.public_visibility? || status.unlisted_visibility? - = fa_icon 'retweet fw' + = fa_icon 'repeat fw' - elsif status.private_visibility? = fa_icon 'lock fw' - else diff --git a/app/views/stream_entries/_status.html.haml b/app/views/stream_entries/_status.html.haml index 83887cd87..3098b4f8d 100644 --- a/app/views/stream_entries/_status.html.haml +++ b/app/views/stream_entries/_status.html.haml @@ -26,7 +26,7 @@ - if status.reblog? .status__prepend .status__prepend-icon-wrapper - %i.status__prepend-icon.fa.fa-fw.fa-retweet + %i.status__prepend-icon.fa.fa-fw.fa-repeat %span = link_to TagManager.instance.url_for(status.account), class: 'status__display-name muted' do %bdi -- cgit