diff options
author | Christoph (Sheogorath) Kern | 2018-07-03 21:41:04 +0200 |
---|---|---|
committer | GitHub | 2018-07-03 21:41:04 +0200 |
commit | 762cff677cddcf32ea0b0e55f338c6e410578a0e (patch) | |
tree | 45eab833f4c84ea42abc0332824aca3e6d1d5da5 /public/css/index.css | |
parent | 4e38d1836e49fb80fecb95726b30cb637e1fbaa6 (diff) | |
parent | 734e7b01a55ec2a70227effde61dc0e866de01d5 (diff) |
Merge pull request #884 from SISheogorath/fix/nightMode
Fix some night mode colors
Diffstat (limited to '')
-rw-r--r-- | public/css/index.css | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/public/css/index.css b/public/css/index.css index 9cc1766e..d9ebf6de 100644 --- a/public/css/index.css +++ b/public/css/index.css @@ -310,7 +310,16 @@ body.night{ overflow: hidden; } -.night .dropdown-menu{ +.night .dropdown-menu > li > a { + color: #eee; +} + +.night .dropdown-menu > li > a:focus, +.night .dropdown-menu > li > a:hover { + color: #262626 +} + +.night .dropdown-menu { background: #222; } |