1
0
Fork 0
mirror of https://github.com/mastodon/mastodon.git synced 2024-08-20 21:08:15 -07:00

Use material symbol for embed status views

This commit is contained in:
Matt Jankowski 2024-08-09 14:22:05 -04:00
parent 8edf721b4d
commit 983d74193c
2 changed files with 12 additions and 12 deletions

View file

@ -11,7 +11,7 @@
%strong.display-name__html.p-name.emojify= display_name(status.account, custom_emojify: true, autoplay: prefers_autoplay?)
%span.display-name__account
= acct(status.account)
= fa_icon('lock') if status.account.locked?
= material_symbol('lock') if status.account.locked?
= account_action_button(status.account)
@ -58,20 +58,20 @@
·
%span.detailed-status__link
- if status.in_reply_to_id.nil?
= fa_icon('reply')
= material_symbol('reply')
- else
= fa_icon('reply-all')
= material_symbol('reply_all')
%span.detailed-status__reblogs>= friendly_number_to_human status.replies_count
 
·
- if status.public_visibility? || status.unlisted_visibility?
%span.detailed-status__link
= fa_icon('retweet')
= material_symbol('repeat')
%span.detailed-status__reblogs>= friendly_number_to_human status.reblogs_count
 
·
%span.detailed-status__link
= fa_icon('star')
= material_symbol('star')
%span.detailed-status__favorites>= friendly_number_to_human status.favourites_count
 

View file

@ -26,7 +26,7 @@
 
%span.display-name__account
= acct(status.account)
= fa_icon('lock') if status.account.locked?
= material_symbol('lock') if status.account.locked?
.status__content.emojify{ data: ({ spoiler: current_account&.user&.setting_expand_spoilers ? 'expanded' : 'folded' } if status.spoiler_text?) }<
- if status.spoiler_text?
%p<
@ -55,16 +55,16 @@
.status__action-bar
%span.status__action-bar-button.icon-button.icon-button--with-counter
- if status.in_reply_to_id.nil?
= fa_icon 'reply fw'
= material_symbol 'reply'
- else
= fa_icon 'reply-all fw'
= material_symbol 'reply_all'
%span.icon-button__counter= obscured_counter status.replies_count
%span.status__action-bar-button.icon-button
- if status.distributable?
= fa_icon 'retweet fw'
= material_symbol 'repeat'
- elsif status.private_visibility? || status.limited_visibility?
= fa_icon 'lock fw'
= material_symbol 'lock'
- else
= fa_icon 'at fw'
= material_symbol 'alternate_email'
%span.status__action-bar-button.icon-button
= fa_icon 'star fw'
= material_symbol 'star'