Fix text color in dark mode

Currently when the browser has a dark theme enabled
the language selection dropdown has white text on a
white background that is un-readable.

This commit changes the dropdown select to have black
text on a white background.

https://github.com/LibreTranslate/LibreTranslate/issues/491
This commit is contained in:
P.J. Finlay 2023-09-16 17:00:10 -05:00
parent 830e168fec
commit ef902e0257

View file

@ -180,6 +180,10 @@ select {
color: var(--fg-color);
}
select option {
color: var(--pri-bg-color);
}
.language-select {
display: inline-flex;
align-items: center;