From a146134b1d63aba9a2122c95aa07b6784bf9b05d Mon Sep 17 00:00:00 2001 From: f1shy-dev Date: Sun, 27 Feb 2022 17:59:05 +0000 Subject: [PATCH 1/3] fixes --- package.json | 2 +- src/styles/NoAds.scss | 2 +- src/styles/main.scss | 11 +++++++++++ 3 files changed, 13 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index da9c4d5..380b035 100644 --- a/package.json +++ b/package.json @@ -31,4 +31,4 @@ "node-vibrant": "^3.1.6", "svgson": "^5.2.1" } -} +} \ No newline at end of file diff --git a/src/styles/NoAds.scss b/src/styles/NoAds.scss index 8287155..1485cef 100644 --- a/src/styles/NoAds.scss +++ b/src/styles/NoAds.scss @@ -25,7 +25,7 @@ } // Hide download buttons - .main-playButton-PlayButton.main-playButton-primary + button[role="switch"] { + .main-actionBar-ActionBarRow button[role="switch"] { display: none; } } diff --git a/src/styles/main.scss b/src/styles/main.scss index bd68fc3..847c099 100644 --- a/src/styles/main.scss +++ b/src/styles/main.scss @@ -1324,3 +1324,14 @@ canvas[width="250"][height="250"] { display: flex; justify-content: center; } + +// fix albumn name font size (#171) +.main-trackInfo-release { + font-size: 10px; +} + +// fix play buttons color going green +.encore-bright-accent-set { + --background-highlight: var(--spice-button) !important; + --background-press: var(--spice-button-active) !important; +} From 23fe7deb155753e74d5017ad43b47c8dc3b389e8 Mon Sep 17 00:00:00 2001 From: f1shy-dev Date: Sun, 27 Feb 2022 18:02:34 +0000 Subject: [PATCH 2/3] add a comment to show the issue ID --- src/styles/main.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/styles/main.scss b/src/styles/main.scss index 847c099..28d2d9d 100644 --- a/src/styles/main.scss +++ b/src/styles/main.scss @@ -1330,7 +1330,7 @@ canvas[width="250"][height="250"] { font-size: 10px; } -// fix play buttons color going green +// fix play buttons color going green (#174) .encore-bright-accent-set { --background-highlight: var(--spice-button) !important; --background-press: var(--spice-button-active) !important; From 14da00bf74806ca05a4eaa508ef9e349deb52cde Mon Sep 17 00:00:00 2001 From: f1shy-dev Date: Sun, 27 Feb 2022 18:36:21 +0000 Subject: [PATCH 3/3] remove the control button triangle --- src/styles/main.scss | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/styles/main.scss b/src/styles/main.scss index 28d2d9d..30444ce 100644 --- a/src/styles/main.scss +++ b/src/styles/main.scss @@ -1335,3 +1335,8 @@ canvas[width="250"][height="250"] { --background-highlight: var(--spice-button) !important; --background-press: var(--spice-button-active) !important; } + +// hide the triangle under the connect button +.control-button--active::after { + display: none; +}