aboutsummaryrefslogtreecommitdiff
path: root/src/components/retweet_button
diff options
context:
space:
mode:
authorTusooa Zhu <tusooa@kazv.moe>2022-01-16 01:19:52 -0500
committertusooa <tusooa@kazv.moe>2023-01-21 15:41:12 -0500
commit68110ce8251610888348defc2e971c9c6af6a55b (patch)
tree8e735f7199c4adcc8f736f9c92847bc6f9d9e67a /src/components/retweet_button
parent0d6435261ef3e91c06fe34cc8bf72ff1b30078c2 (diff)
Make interact buttons accessible for anonymous users
Diffstat (limited to 'src/components/retweet_button')
-rw-r--r--src/components/retweet_button/retweet_button.vue17
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 7700ee0d..8804cc6b 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"