diff options
-rw-r--r-- | src/styles.ts | 25 |
1 files changed, 8 insertions, 17 deletions
diff --git a/src/styles.ts b/src/styles.ts index 26d34ed..0f29ab7 100644 --- a/src/styles.ts +++ b/src/styles.ts @@ -5,26 +5,17 @@ export function styles () { const stylesheet = style.sheet as CSSStyleSheet; - // "Back to Browse" button that appears when credits are minimised. - stylesheet.insertRule( - '.OriginalsPostPlay-BackgroundTrailer .BackToBrowse { visibility: hidden; }', - stylesheet.cssRules.length - ); + stylesheet.insertRule(` + /* "Back to Browse" button that appears when credits are minimised. */ + .OriginalsPostPlay-BackgroundTrailer .BackToBrowse, - // Age rating. - stylesheet.insertRule( - '.player-view-childrens { visibility: hidden; }', - stylesheet.cssRules.length - ); + /* Age rating. */ + .player-view-childrens, - // "Watch Credits" button. - stylesheet.insertRule( - '[data-uia="watch-credits-seamless-button"] { visibility: hidden; }', - stylesheet.cssRules.length - ); + /* "Watch Credits" button. */ + [data-uia="watch-credits-seamless-button"], - // Skip buttons. - stylesheet.insertRule(` + /* Skip buttons. */ a[aria-label="Skip Intro"], a[aria-label="Skip Recap"], a[aria-label="Next Episode"], |