mirror of
https://github.com/open-webui/open-webui.git
synced 2025-12-14 13:25:20 +00:00
FIX:style_dark_mode_select_boxes
### 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
46a8e4acad
commit
f06e2c1a4a
1 changed files with 10 additions and 0 deletions
10
src/app.css
10
src/app.css
|
|
@ -152,6 +152,16 @@ select {
|
||||||
-webkit-appearance: none;
|
-webkit-appearance: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.dark select {
|
||||||
|
background-color: rgb(23, 23, 23); /* gray-900 */
|
||||||
|
color: rgb(209, 213, 219); /* gray-300 */
|
||||||
|
}
|
||||||
|
|
||||||
|
.dark select option {
|
||||||
|
background-color: rgb(38, 38, 38); /* gray-850 */
|
||||||
|
color: rgb(255, 255, 255);
|
||||||
|
}
|
||||||
|
|
||||||
@keyframes shimmer {
|
@keyframes shimmer {
|
||||||
0% {
|
0% {
|
||||||
background-position: 200% 0;
|
background-position: 200% 0;
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue