mirror of
https://github.com/LibreTranslate/LibreTranslate.git
synced 2024-11-21 15:31:00 +00:00
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:
parent
830e168fec
commit
ef902e0257
1 changed files with 4 additions and 0 deletions
|
@ -180,6 +180,10 @@ select {
|
|||
color: var(--fg-color);
|
||||
}
|
||||
|
||||
select option {
|
||||
color: var(--pri-bg-color);
|
||||
}
|
||||
|
||||
.language-select {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
|
|
Loading…
Reference in a new issue