From 8650e67dd5330feb002bbb71a9c1ef613af83bcd Mon Sep 17 00:00:00 2001 From: Ghanshyam Singh Date: Tue, 9 Dec 2025 17:01:15 +0530 Subject: [PATCH 1/2] Fix: Button hover color now stays green (matches CircuitVerse scheme) Signed-off-by: Ghanshyam Singh --- assets/scss/_mixins.scss | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/assets/scss/_mixins.scss b/assets/scss/_mixins.scss index 2aaaf57..cca8764 100644 --- a/assets/scss/_mixins.scss +++ b/assets/scss/_mixins.scss @@ -162,4 +162,22 @@ body .toc a:hover { .section.pt-0 .row.shadow.bg-white.p-5 > div:first-child img { width: 180px !important; /* 320–360 works well */ } +} + +// --- Button color overrides for CircuitVerse theme --- +.btn-primary, +.container .btn-primary { + background: #42b983 !important; + border-color: #42b983 !important; +} +.btn-primary:active, +.btn-primary:hover, +.btn-primary.focus, +.btn-primary.active, +.container .btn-primary:active, +.container .btn-primary:hover, +.container .btn-primary.focus, +.container .btn-primary.active { + background: #368f6e !important; + border-color: #368f6e !important; } \ No newline at end of file From 5df3085b5a17d5259ce672960fcd47b72fa71ed9 Mon Sep 17 00:00:00 2001 From: Ghanshyam Singh Date: Tue, 9 Dec 2025 17:19:47 +0530 Subject: [PATCH 2/2] Fix: Only update .btn-primary hover/active color to match CircuitVerse green scheme --- assets/scss/_mixins.scss | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/assets/scss/_mixins.scss b/assets/scss/_mixins.scss index cca8764..376a754 100644 --- a/assets/scss/_mixins.scss +++ b/assets/scss/_mixins.scss @@ -164,12 +164,7 @@ body .toc a:hover { } } -// --- Button color overrides for CircuitVerse theme --- -.btn-primary, -.container .btn-primary { - background: #42b983 !important; - border-color: #42b983 !important; -} +// --- Button hover color overrides for CircuitVerse theme --- .btn-primary:active, .btn-primary:hover, .btn-primary.focus,