From 5a42a7e9c28cde42c5dc751f9248a7bf659bc628 Mon Sep 17 00:00:00 2001 From: ryoluo <40686845+ryoluo@users.noreply.github.com> Date: Fri, 15 Oct 2021 02:16:33 +0900 Subject: [PATCH 1/2] fix(VTimelineItem): fix flickering on clickable v-card fixes #14193 --- packages/vuetify/src/components/VTimeline/VTimeline.sass | 3 +++ 1 file changed, 3 insertions(+) diff --git a/packages/vuetify/src/components/VTimeline/VTimeline.sass b/packages/vuetify/src/components/VTimeline/VTimeline.sass index 9192427b253..43b021caac9 100644 --- a/packages/vuetify/src/components/VTimeline/VTimeline.sass +++ b/packages/vuetify/src/components/VTimeline/VTimeline.sass @@ -98,6 +98,9 @@ &:before top: calc(50% - #{$timeline-wedge-size} + 2px) + bottom: auto + opacity: unset + background: none // Modifiers .v-timeline--align-top From bfd3e609174a1c219011f09822e534699c883650 Mon Sep 17 00:00:00 2001 From: ryoluo <40686845+ryoluo@users.noreply.github.com> Date: Thu, 21 Oct 2021 22:07:26 +0900 Subject: [PATCH 2/2] fix(VTimelineItem): don't use opacity:unset --- packages/vuetify/src/components/VTimeline/VTimeline.sass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/vuetify/src/components/VTimeline/VTimeline.sass b/packages/vuetify/src/components/VTimeline/VTimeline.sass index 43b021caac9..5ce9a9a1b9b 100644 --- a/packages/vuetify/src/components/VTimeline/VTimeline.sass +++ b/packages/vuetify/src/components/VTimeline/VTimeline.sass @@ -99,7 +99,7 @@ &:before top: calc(50% - #{$timeline-wedge-size} + 2px) bottom: auto - opacity: unset + opacity: 1 background: none // Modifiers