fix(ui): improve select dropdown contrast

This commit is contained in:
2026-06-22 15:49:21 +09:30
parent ecc89e864c
commit e3ec6c80d0
2 changed files with 17 additions and 12 deletions
+6 -5
View File
@@ -63,11 +63,6 @@
background: transparent;
}
.select-input option {
background: var(--background-primary);
color: var(--text-primary);
}
.select-icon {
color: color-mix(in srgb, var(--text-primary) 60%, transparent);
}
@@ -79,4 +74,10 @@
:global(.dark) .select-input {
color-scheme: dark;
}
/* Native option lists on Windows/Edge often stay light regardless of color-scheme */
.select-input option {
background-color: #ffffff;
color: #18181b;
}
</style>