diff options
author | Ajay <[email protected]> | 2023-10-08 16:38:40 -0400 |
---|---|---|
committer | Ajay <[email protected]> | 2023-10-08 16:38:40 -0400 |
commit | 04a9f82bdc87a056c98c25efb4639a68071376d3 (patch) | |
tree | b649f7759f7f361ba506e053c86cf40f18a90f70 /public/content.css | |
parent | 39cfdc7b6cfc77d4038dd496daa00c7dac94b00a (diff) | |
download | SponsorBlock-04a9f82bdc87a056c98c25efb4639a68071376d3.tar.gz SponsorBlock-04a9f82bdc87a056c98c25efb4639a68071376d3.zip |
Rename hidden css class to sbhidden to fix compatibility with Piped
Fixes #1865
Diffstat (limited to 'public/content.css')
-rw-r--r-- | public/content.css | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/public/content.css b/public/content.css index 2681afa9..39051417 100644 --- a/public/content.css +++ b/public/content.css @@ -7,7 +7,7 @@ --sb-dark-red-outline: rgb(130,0,0,0.9); } -.hidden { +.sbhidden { display: none; } @@ -151,7 +151,7 @@ div:hover > .sponsorBlockChapterBar { vertical-align: top; } -.playerButton.hidden:not(.autoHiding) { +.playerButton.sbhidden:not(.autoHiding) { display: none !important; } @@ -169,13 +169,13 @@ div:hover > .sponsorBlockChapterBar { overflow: visible !important; } -.autoHiding:not(.hidden) { +.autoHiding:not(.sbhidden) { transform: translateX(0%) scale(1); /* opacity is from YouTube page */ transition: transform 0.2s, width 0.2s, opacity .1s cubic-bezier(0.4,0.0,1,1) !important; } -.autoHiding.hidden { +.autoHiding.sbhidden { transform: translateX(100%) scale(0); /* opacity is from YouTube page */ transition: transform 0.2s, width 0.2s, opacity .1s cubic-bezier(0.4,0.0,1,1) !important; @@ -183,7 +183,7 @@ div:hover > .sponsorBlockChapterBar { width: 0px !important; } -.autoHiding.hidden.autoHideLeft { +.autoHiding.sbhidden.autoHideLeft { transform: translateX(-100%) scale(0); } @@ -272,7 +272,7 @@ div:hover > .sponsorBlockChapterBar { max-width: calc(100% - 50px); } -.sponsorSkipNotice .hidden { +.sponsorSkipNotice .sbhidden { display: none; } @@ -691,7 +691,7 @@ input::-webkit-inner-spin-button { color: white; } -.skipButtonControlBarContainer.hidden { +.skipButtonControlBarContainer.sbhidden { display: none !important; } |