Add badges to status interacting buttons

Now, the following badges will be added:
0: (+) sign to reply, favourite, repeat, react and extra buttons
1: (-) sign to unfavourite and unrepeat
2: (x) sign to close reply form, close react popover, and close extra buttons popover
3: Check mark to favourited and repeated statuses

https://git.pleroma.social/pleroma/pleroma-fe/-/issues/1092
This commit is contained in:
Tusooa Zhu 2022-01-16 01:01:19 -05:00 committed by HJ
commit b2e4827741
11 changed files with 229 additions and 34 deletions

View file

@ -7,10 +7,24 @@
:title="$t('tool_tip.reply')"
@click.prevent="$emit('toggle')"
>
<FAIcon
class="fa-scale-110 fa-old-padding"
icon="reply"
/>
<FALayers class="fa-old-padding-layer">
<FAIcon
class="fa-scale-110"
icon="reply"
/>
<FAIcon
v-if="!replying"
class="focus-marker"
transform="shrink-6 up-8 right-16"
icon="plus"
/>
<FAIcon
v-else
class="focus-marker"
transform="shrink-6 up-8 right-16"
icon="times"
/>
</FALayers>
</button>
<span v-else>
<FAIcon
@ -52,6 +66,16 @@
color: $fallback--cBlue;
color: var(--cBlue, $fallback--cBlue);
}
.focus-marker {
visibility: hidden;
}
&:hover, &:focus {
.focus-marker {
visibility: visible;
}
}
}
}