From 89d8fee5daca5786fa4219b45889e284e237d04c Mon Sep 17 00:00:00 2001 From: "Aaron D. Lee" Date: Wed, 7 Jan 2026 20:03:09 -0500 Subject: [PATCH] Gold toggle text with outline and drop shadow like labels --- frontends/web/static/style.css | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/frontends/web/static/style.css b/frontends/web/static/style.css index 708186d..7251f7f 100644 --- a/frontends/web/static/style.css +++ b/frontends/web/static/style.css @@ -133,6 +133,13 @@ /* Payload type toggle - gold text when selected */ .btn-check:checked + .btn-outline-primary { color: #ffe699 !important; + font-weight: 500; + text-shadow: + -0.3px -0.3px 0 #b8860b, + 0.3px -0.3px 0 #b8860b, + -0.3px 0.3px 0 #b8860b, + 0.3px 0.3px 0 #b8860b, + 1px 2px 2px rgba(0, 0, 0, 0.4); }