From 3a4ce6163c79dfe9509d93acfeba335d09a8bd96 Mon Sep 17 00:00:00 2001 From: GilbN Date: Fri, 18 Mar 2022 16:11:44 +0100 Subject: [PATCH] fix: :bug: Plex: Fixes background color not working on latest Plex version --- css/base/plex/plex-base.css | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/css/base/plex/plex-base.css b/css/base/plex/plex-base.css index 54be0cd5..9db4c276 100644 --- a/css/base/plex/plex-base.css +++ b/css/base/plex/plex-base.css @@ -118,8 +118,11 @@ a[class*="MetadataTableRow-title-"]:hover { } /* BODY */ -html body, -.application { +#plex > div[class*="FullPageBackground-backgroundContainer-"] > div > div:nth-child(1) > canvas, +#plex > div[class*="FullPageBackground-backgroundContainer-"] > div > canvas { + display: none !important; +} +body,[class*="FullPageBackground-backgroundContainer-"] { background: var(--main-bg-color); background-repeat: repeat, no-repeat; background-attachment: fixed, fixed; @@ -280,7 +283,8 @@ button:hover [class*="DisclosureArrow-disclosureArrow-"] { border-color: rgb(var(--accent-color)); } -[class*="PivotTab-selectedButton-"]:after { +[class*="PivotTab-selectedButton-"]:after, +[class*="TabButton-selectedButton-"]:after { background-color: rgb(var(--accent-color)) !important; }