diff options
Diffstat (limited to 'public/content.css')
-rw-r--r-- | public/content.css | 9 |
1 files changed, 9 insertions, 0 deletions
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; } |