From e2002b6026b24eb6b5f92aebef27f25aea11e3da Mon Sep 17 00:00:00 2001 From: "Aaron D. Lee" Date: Wed, 7 Jan 2026 20:01:54 -0500 Subject: [PATCH] Force gold styling with !important for toggle buttons --- frontends/web/static/style.css | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/frontends/web/static/style.css b/frontends/web/static/style.css index 6cd17ba..1cdada3 100644 --- a/frontends/web/static/style.css +++ b/frontends/web/static/style.css @@ -132,20 +132,21 @@ /* Payload type toggle - gold styling */ .btn-check + .btn-outline-primary { - color: #ffe699; - border-color: #b8860b; + color: #ffe699 !important; + border-color: #b8860b !important; + background: transparent !important; } .btn-check + .btn-outline-primary:hover { - color: #fff2c4; - border-color: #ffe699; - background: rgba(255, 230, 153, 0.1); + color: #fff2c4 !important; + border-color: #ffe699 !important; + background: rgba(255, 230, 153, 0.1) !important; } .btn-check:checked + .btn-outline-primary { - color: #1a1a2e; - background: #ffe699; - border-color: #ffe699; + color: #1a1a2e !important; + background: #ffe699 !important; + border-color: #ffe699 !important; }