diff options
author | Ajay <[email protected]> | 2024-11-26 13:31:18 -0500 |
---|---|---|
committer | Ajay <[email protected]> | 2024-11-26 13:31:18 -0500 |
commit | d3cd0962d52b04a64e3f273ed31a89f4d79d5659 (patch) | |
tree | 06cf8d3f0ba056563417b4e2bb22b76f01075b0b | |
parent | c1168582a9a0db87c90deb5fc484c6a2c6b9a3fc (diff) | |
download | SponsorBlock-d3cd0962d52b04a64e3f273ed31a89f4d79d5659.tar.gz SponsorBlock-d3cd0962d52b04a64e3f273ed31a89f4d79d5659.zip |
Fix fade in animation for skip notice
-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; } |