diff options
| author | Henry Jameson <me@hjkos.com> | 2018-08-05 09:18:04 +0300 |
|---|---|---|
| committer | Henry Jameson <me@hjkos.com> | 2018-08-05 09:18:04 +0300 |
| commit | 3373d287012d66c642249bbe2da48febaa69b12e (patch) | |
| tree | 67f8fe717d200a49ea418bc6a8c230d6abe441c0 /src/App.scss | |
| parent | 32fd108e97de8a1e1201bcc31f70af9ace77e517 (diff) | |
Fixes selects having unreadable text on some browsers/OSes. Added bonus: theme
switcher select now has styled options that show preview of what theme's bg/fg
colors are
Diffstat (limited to 'src/App.scss')
| -rw-r--r-- | src/App.scss | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/App.scss b/src/App.scss index f830a33b..2426b998 100644 --- a/src/App.scss +++ b/src/App.scss @@ -168,6 +168,13 @@ input, textarea, .select { } } +option { + color: $fallback--fg; + color: var(--fg, $fallback--fg); + background-color: $fallback--bg; + background-color: var(--bg, $fallback--bg); +} + i[class*=icon-] { color: $fallback--icon; color: var(--icon, $fallback--icon) |
