From f23bb4f2de31f432c0f618fb0487c7eb1939606c Mon Sep 17 00:00:00 2001 From: Chaxiraxi Date: Thu, 22 Sep 2022 16:14:35 +0200 Subject: [PATCH 1/2] Fixed navbar colliding with little Spotify's menu --- user.css | 3 +++ 1 file changed, 3 insertions(+) diff --git a/user.css b/user.css index fab12ef..83f9130 100644 --- a/user.css +++ b/user.css @@ -22,6 +22,9 @@ body { background-repeat: no-repeat; background-size: 100%; } +.main-navBar-entryPoints { + margin-top: 20px; +} .main-repeatButton-button, .main-shuffleButton-button { color: var(--spice-subtext); opacity: 70%; From 321bb741bb8ecac190abaf9f6e58083ecd6c62a3 Mon Sep 17 00:00:00 2001 From: Chaxiraxi Date: Tue, 27 Sep 2022 01:05:52 +0200 Subject: [PATCH 2/2] A lot of features added --- user.css | 52 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) diff --git a/user.css b/user.css index 83f9130..b6b6d52 100644 --- a/user.css +++ b/user.css @@ -22,6 +22,58 @@ body { background-repeat: no-repeat; background-size: 100%; } +/* Playing track's title in playlist */ +.main-trackList-trackListRow.main-trackList-active .main-trackList-rowTitle, .main-trackList-trackListRow.main-trackList-active .main-trackList-rowMarker { + color: green; +} +.main-trackList-trackListRow.main-trackList-active:hover .main-trackList-rowTitle { + color: lime; +} + +/* Explicit content white */ +.main-tag-container { + color: white; +} + +/* Disable upgrade button */ +.main-topBar-UpgradeButton { + display: none; +} + +/* Fix the navbar icons not showing when selected */ +.home-active-icon, .search-active-icon, .collection-active-icon { + color: white; + fill: white; +} + +/* Make the friend list transparent and blured */ +.main-buddyFeed-buddyFeedRoot { + background-color: rgba(30, 30, 30, 0.4); + backdrop-filter: blur(14px) !important; +} + +/* Added style to the native spotify's lyrics screen */ +.lyrics-lyrics-background { + background-color: rgba(30, 30, 30, 0.4) +} +.lyrics-lyrics-contentContainer { + --lyrics-color-active: #ffde00 !important; + --lyrics-color-inactive: #D56F80 !important; + --lyrics-color-background: #1e1e1e !important; + backdrop-filter: blur(14px) !important; +} + +/* Fixed elapsed time overlaping with the mic button */ +.playback-bar__progress-time, .playback-bar__progress-time-elapsed, .main-playbackBarRemainingTime-container { + right: 265px; +} + +/* Make the selected track in playlist more readable */ +div[aria-selected="true"] > div > div.main-trackList-rowSectionStart > div > div, div[aria-selected="true"]:hover > div > div.main-trackList-rowSectionStart > div > div { + color: #ffde00 !important; +} + +/* Fixed navbar overlaping on top Spotify's menu in Windows */ .main-navBar-entryPoints { margin-top: 20px; }