diff options
| author | HJ <30-hj@users.noreply.git.pleroma.social> | 2023-01-28 23:00:07 +0000 |
|---|---|---|
| committer | HJ <30-hj@users.noreply.git.pleroma.social> | 2023-01-28 23:00:07 +0000 |
| commit | af220924723676d79431ab9acc03bd4de082003d (patch) | |
| tree | a85074c36f1b4b216480184433fe42938814b6da /src/components/retweet_button/retweet_button.vue | |
| parent | a08378253fe8ca72d178b19c5d45da21100cfe71 (diff) | |
| parent | 68110ce8251610888348defc2e971c9c6af6a55b (diff) | |
Merge branch 'tusooa/anon-xact-acc' into 'develop'
Make interact buttons accessible for anonymous users
See merge request pleroma/pleroma-fe!1773
Diffstat (limited to 'src/components/retweet_button/retweet_button.vue')
| -rw-r--r-- | src/components/retweet_button/retweet_button.vue | 17 |
1 files changed, 12 insertions, 5 deletions
diff --git a/src/components/retweet_button/retweet_button.vue b/src/components/retweet_button/retweet_button.vue index 134fcb36..e1b6b153 100644 --- a/src/components/retweet_button/retweet_button.vue +++ b/src/components/retweet_button/retweet_button.vue @@ -45,13 +45,20 @@ class="button-unstyled interactive" target="_blank" role="button" + :title="$t('tool_tip.repeat')" :href="remoteInteractionLink" > - <FAIcon - class="fa-scale-110 fa-old-padding" - icon="retweet" - :title="$t('tool_tip.repeat')" - /> + <FALayers class="fa-old-padding-layer"> + <FAIcon + class="fa-scale-110" + icon="retweet" + /> + <FAIcon + class="focus-marker" + transform="shrink-6 up-9 right-12" + icon="plus" + /> + </FALayers> </a> <span v-if="!mergedConfig.hidePostStats && status.repeat_num > 0" |
