From 37f8a220e342b254e61d82ec602ae26fe5b86746 Mon Sep 17 00:00:00 2001 From: Gauthier Roebroeck Date: Wed, 14 Jan 2026 16:42:56 +0800 Subject: [PATCH] small card fixes --- next-ui/src/components/item/card/ItemCard.vue | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/next-ui/src/components/item/card/ItemCard.vue b/next-ui/src/components/item/card/ItemCard.vue index f7cc47abd..1c34786b7 100644 --- a/next-ui/src/components/item/card/ItemCard.vue +++ b/next-ui/src/components/item/card/ItemCard.vue @@ -9,8 +9,9 @@ :disabled="overlayDisabled" >
@@ -80,7 +81,7 @@ :color="fabHover ? 'primary' : 'white'" :class="{ plain: !fabHover }" v-bind="fabProps" - @click="emit('clickFab')" + @click.stop="emit('clickFab')" /> @@ -91,7 +92,7 @@ variant="plain" color="white" class="bottom-0 left-0 position-absolute" - @click="emit('clickQuickAction')" + @click.stop="emit('clickQuickAction')" @mouseenter="(event: Event) => quickActionMouseEnter(event)" /> @@ -102,7 +103,7 @@ variant="plain" color="white" class="bottom-0 right-0 position-absolute" - @click="emit('clickMenu')" + @click.stop="emit('clickMenu')" @mouseenter="(event: Event) => menuMouseEnter(event)" /> @@ -146,7 +147,7 @@ function onCardLongPress() { } const { - stretchPoster = true, + stretchPoster = false, width = 150, disableSelection = false, selected = false,