mirror of
https://github.com/open-webui/open-webui.git
synced 2025-12-12 12:25:20 +00:00
UPD: Refactor dark select styles using Tailwind CSS classes
### UPD_Styles: Add dark mode styles for select elements and options. Actually some select "boxes" have css dark theme support, but other not. This PR add CSS for dark theme selects.
This commit is contained in:
parent
f06e2c1a4a
commit
235ed8956c
1 changed files with 3 additions and 5 deletions
|
|
@ -153,13 +153,11 @@ select {
|
||||||
}
|
}
|
||||||
|
|
||||||
.dark select {
|
.dark select {
|
||||||
background-color: rgb(23, 23, 23); /* gray-900 */
|
@apply bg-gray-900 text-gray-300;
|
||||||
color: rgb(209, 213, 219); /* gray-300 */
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.dark select option {
|
.dark select option {
|
||||||
background-color: rgb(38, 38, 38); /* gray-850 */
|
@apply bg-gray-850 text-white;
|
||||||
color: rgb(255, 255, 255);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@keyframes shimmer {
|
@keyframes shimmer {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue