From d3cd0962d52b04a64e3f273ed31a89f4d79d5659 Mon Sep 17 00:00:00 2001 From: Ajay Date: Tue, 26 Nov 2024 13:31:18 -0500 Subject: Fix fade in animation for skip notice --- public/content.css | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/public/content.css b/public/content.css index db095af0..02911c99 100644 --- a/public/content.css +++ b/public/content.css @@ -218,6 +218,11 @@ div:hover > .sponsorBlockChapterBar { from { opacity: 0; } } +@keyframes fadeInToFaded { + from { opacity: 0; } + to { opacity: 0.5; } +} + @keyframes fadeOut { to { opacity: 0; } } @@ -290,6 +295,10 @@ div:hover > .sponsorBlockChapterBar { animation: fadeIn 0.5s ease-out; } +.sponsorSkipNoticeFadeIn.sponsorSkipNoticeFaded { + animation: fadeInToFaded 0.5s ease-out; +} + .exportCopiedNotice .sponsorSkipNoticeFadeIn { animation: none; } -- cgit v1.2.3