Merge branch 'small-fixes-and-improvements' into shigusegubu-themes3

This commit is contained in:
Henry Jameson 2026-05-19 18:50:35 +03:00
commit 8f0ff718ae
2 changed files with 4 additions and 2 deletions

View file

@ -4,6 +4,7 @@
trigger="click"
popover-class="emoji-picker popover-default"
:hide-trigger="true"
placement="bottom"
@show="onPopoverShown"
@close="onPopoverClosed"
>

View file

@ -54,7 +54,7 @@
<FAIcon
v-if="button.dropdown?.()"
class="chevron-icon"
:icon="extra ? 'chevron-right' : 'chevron-up'"
:icon="extra ? 'chevron-right' : 'chevron-down'"
fixed-width
/>
</component>
@ -71,6 +71,7 @@
<Popover
v-if="button.name === 'bookmark'"
class="chevron-popover"
placement="bottom"
:trigger="extra ? 'hover' : 'click'"
:placement="extra ? 'right' : 'top'"
:offset="extra ? { x: 10 } : { y: 10 }"
@ -79,7 +80,7 @@
<template #trigger>
<FAIcon
class="chevron-icon"
:icon="extra ? 'chevron-right' : 'chevron-up'"
:icon="extra ? 'chevron-right' : 'chevron-down'"
fixed-width
/>
</template>