diff options
| author | saltycrys <73420320+saltycrys@users.noreply.github.com> | 2020-12-14 14:15:03 +0100 |
|---|---|---|
| committer | saltycrys <73420320+saltycrys@users.noreply.github.com> | 2020-12-14 14:15:03 +0100 |
| commit | b3e9b923444b4f4cf874df8911a54725c77fbf84 (patch) | |
| tree | 059defcc1575ac638f146102740630e7ec657028 | |
| parent | b566c4ba1a4b44044154b54e33f1fa45fc5b1e90 (diff) | |
| download | invidious-b3e9b923444b4f4cf874df8911a54725c77fbf84.tar.gz invidious-b3e9b923444b4f4cf874df8911a54725c77fbf84.tar.bz2 invidious-b3e9b923444b4f4cf874df8911a54725c77fbf84.zip | |
Fix pure-button hover color on a-tags
Diffstat (limited to '')
| -rw-r--r-- | assets/css/default.css | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/assets/css/default.css b/assets/css/default.css index c26b0a3e..d714f16c 100644 --- a/assets/css/default.css +++ b/assets/css/default.css @@ -499,6 +499,10 @@ video.video-js { color: #167ac6 !important; } +.light-theme a.pure-button-primary:hover { + color: #fff !important; +} + .light-theme a { color: #61809b; text-decoration: none; @@ -521,6 +525,10 @@ video.video-js { color: #167ac6 !important; } + .no-theme a.pure-button-primary:hover { + color: #fff !important; + } + .no-theme a { color: #61809b; text-decoration: none; |
