From 2902919ae58d9ee4cb47f2c9ba827402aeb6a366 Mon Sep 17 00:00:00 2001 From: TaskPool Date: Sat, 8 Aug 2026 04:29:19 +0800 Subject: [PATCH] style(select): improve select item hover and active state visual hierarchy - Use --bg-hover for hover state (more visible) - Add font-weight: 500 to active/selected state for better distinction --- web/src/index.css | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/web/src/index.css b/web/src/index.css index ea7397d..2681b18 100644 --- a/web/src/index.css +++ b/web/src/index.css @@ -426,12 +426,13 @@ pre, } .ui-select-item:hover:not(:disabled) { - background: var(--bg-tertiary); + background: var(--bg-hover); } .ui-select-item.is-active { background: var(--bg-selected); color: var(--text-primary); + font-weight: 500; } .ui-select-item:disabled {