From 2f949e463d1ee03a6a9210357d081cf73583b58f Mon Sep 17 00:00:00 2001 From: Rito Rhymes Date: Mon, 11 May 2026 03:14:08 -0400 Subject: [PATCH] Improve EIP badge UI clarity Replace low-contrast white text with dark text on warning-colored Draft and Review badges for improved visibility. Give Living badges a distinct primary blue color so the special status stands out. Add a pointer cursor on badge hover to make tooltip-enabled badge interactions clearer. --- sass/assets/css/style.scss | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/sass/assets/css/style.scss b/sass/assets/css/style.scss index 4bf4052..84bab5c 100644 --- a/sass/assets/css/style.scss +++ b/sass/assets/css/style.scss @@ -77,6 +77,7 @@ a:hover, a:active { } .badge:hover { + cursor: pointer; filter: brightness(75%); transition: all 0.25s ease; } @@ -178,15 +179,22 @@ pre,code { content: '🚧 '; } -.tax-term-draft, .tax-term-review { +.badge.text-light.tax-term-draft, +.badge.text-light.tax-term-review { --bs-bg-opacity: 1; background-color: rgba(var(--bs-warning-rgb),var(--bs-bg-opacity)) !important; + color: #000 !important; } .tax-term-draft::before, .tax-term-review::before { content: '⚠️ '; } +.tax-term-living { + --bs-bg-opacity: 1; + background-color: rgba(var(--bs-primary-rgb),var(--bs-bg-opacity)) !important; +} + .giallo-l { display: inline-block; min-height: 1lh;