From 7679b3c4ba4d26f8d3b80b2f058b63590d712db0 Mon Sep 17 00:00:00 2001 From: meowarex Date: Fri, 6 Jun 2025 02:58:58 +1000 Subject: [PATCH] Darken Feed Panel --- .../src/cover-everywhere.css | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) diff --git a/plugins/radiant-lyrics-luna/src/cover-everywhere.css b/plugins/radiant-lyrics-luna/src/cover-everywhere.css index 9965c64..c2bead1 100644 --- a/plugins/radiant-lyrics-luna/src/cover-everywhere.css +++ b/plugins/radiant-lyrics-luna/src/cover-everywhere.css @@ -70,17 +70,22 @@ main, -webkit-backdrop-filter: blur(10px) !important; } -/* Feed sidebar - completely transparent to show background */ -[data-test="feed-sidebar"], -[class^="_feedSidebarVStack"], -[class^="_feedSidebarSpacer"], -[class^="_feedSidebarItem"], -[class^="_feedSidebarItemDiv"] { - background-color: transparent !important; +/* Feed sidebar panel - black tint background for readability | Cheers @isolate for the idea */ +[data-test="feed-sidebar"] { + background-color: rgba(0, 0, 0, 0.5) !important; backdrop-filter: blur(10px) !important; -webkit-backdrop-filter: blur(10px) !important; } +/* Feed sidebar items - transparent | Cheers @isolate for the idea */ +[class*="_feedSidebarItem"], +[class*="_feedSidebarItemDiv"], +[class*="_cellContainer"], +[data-test="feed-interval"], +[data-test="feed-item"] { + background-color: transparent !important; +} + /* Remove bottom gradient */ [class^="_bottomGradient"] { display: none !important;