style(select): improve select item hover and active state visual hierarchy
Build and Deploy / Build and Push Docker Image (push) Successful in 2m1s

- Use --bg-hover for hover state (more visible)
- Add font-weight: 500 to active/selected state for better distinction
This commit is contained in:
2026-08-08 04:29:19 +08:00
parent 8ef0ff8507
commit 2902919ae5
+2 -1
View File
@@ -426,12 +426,13 @@ pre,
} }
.ui-select-item:hover:not(:disabled) { .ui-select-item:hover:not(:disabled) {
background: var(--bg-tertiary); background: var(--bg-hover);
} }
.ui-select-item.is-active { .ui-select-item.is-active {
background: var(--bg-selected); background: var(--bg-selected);
color: var(--text-primary); color: var(--text-primary);
font-weight: 500;
} }
.ui-select-item:disabled { .ui-select-item:disabled {