From 9cbc8e196cdfbeb2d68369703b8482c78e7a0c9c Mon Sep 17 00:00:00 2001 From: Ayush Dumasia Date: Mon, 9 Jun 2025 14:06:21 +0530 Subject: [PATCH 1/3] =?UTF-8?q?fix=20=F0=9F=90=9B:=20Fix=20CSS=20for=20com?= =?UTF-8?q?pact=20mode?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit There are few bugs where theme (for toolbar and corners at sidebar) doesn't apply for compact mode --- themes/Mocha/Mauve/userChrome.css | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/themes/Mocha/Mauve/userChrome.css b/themes/Mocha/Mauve/userChrome.css index b38dd77..e1e2ce0 100644 --- a/themes/Mocha/Mauve/userChrome.css +++ b/themes/Mocha/Mauve/userChrome.css @@ -26,7 +26,23 @@ --toolbox-bgcolor-inactive: #181825 !important; } - #permissions-granted-icon{ + toolbar#nav-bar.browser-toolbar.chromeclass-location { + background-color: #181825 !important; + } + + hbox#titlebar { + background-color: #181825 !important; + } + + toolbartabstop { + background-color: #181825 !important; + } + + #zen-appcontent-navbar-container { + background-color: #181825 !important; + } + + #permissions-granted-icon { color: #181825 !important; } From 8917db4a2a4048d8a22082450353c7edeb087b4a Mon Sep 17 00:00:00 2001 From: Ayush Dumasia Date: Tue, 10 Jun 2025 07:12:48 +0530 Subject: [PATCH 2/3] =?UTF-8?q?fix=20=F0=9F=90=9E:=20Fix=20template?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Add two properties in template for gh actions --- templates/userChrome.tera | 8 ++++++++ themes/Mocha/Mauve/userChrome.css | 10 ++-------- 2 files changed, 10 insertions(+), 8 deletions(-) diff --git a/templates/userChrome.tera b/templates/userChrome.tera index 66b0708..feade86 100644 --- a/templates/userChrome.tera +++ b/templates/userChrome.tera @@ -36,6 +36,14 @@ whiskers: --toolbox-bgcolor-inactive: #{{ mantle.hex }} !important; } + hbox#titlebar { + background-color: #{{ mantle.hex }} !important; + } + + #zen-appcontent-navbar-container { + background-color: #{{ mantle.hex }} !important; + } + #permissions-granted-icon{ color: #{{ mantle.hex }} !important; } diff --git a/themes/Mocha/Mauve/userChrome.css b/themes/Mocha/Mauve/userChrome.css index e1e2ce0..4847990 100644 --- a/themes/Mocha/Mauve/userChrome.css +++ b/themes/Mocha/Mauve/userChrome.css @@ -26,18 +26,12 @@ --toolbox-bgcolor-inactive: #181825 !important; } - toolbar#nav-bar.browser-toolbar.chromeclass-location { - background-color: #181825 !important; - } - + /* For Vertical bar (Sidebar) */ hbox#titlebar { background-color: #181825 !important; } - toolbartabstop { - background-color: #181825 !important; - } - + /* For Toolbar */ #zen-appcontent-navbar-container { background-color: #181825 !important; } From d20c3bdb968d760351426c90172b5240b31ec280 Mon Sep 17 00:00:00 2001 From: Ayush Dumasia Date: Tue, 10 Jun 2025 07:14:33 +0530 Subject: [PATCH 3/3] =?UTF-8?q?ci=20=F0=9F=A6=8A:=20Try=20to=20trigger=20a?= =?UTF-8?q?ction?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/whiskers-check.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/whiskers-check.yml b/.github/workflows/whiskers-check.yml index 0413deb..977dd84 100644 --- a/.github/workflows/whiskers-check.yml +++ b/.github/workflows/whiskers-check.yml @@ -3,7 +3,7 @@ name: whiskers on: workflow_dispatch: push: - branches: [main] + branches: [fix/compact-mode-css] pull_request: branches: [main]