From b3e9b923444b4f4cf874df8911a54725c77fbf84 Mon Sep 17 00:00:00 2001 From: saltycrys <73420320+saltycrys@users.noreply.github.com> Date: Mon, 14 Dec 2020 14:15:03 +0100 Subject: [PATCH 1/2] Fix pure-button hover color on a-tags --- assets/css/default.css | 8 ++++++++ 1 file changed, 8 insertions(+) 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; From fc67dd18d08ccb7c88e2e7d7d008e653522ba71c Mon Sep 17 00:00:00 2001 From: saltycrys <73420320+saltycrys@users.noreply.github.com> Date: Mon, 14 Dec 2020 14:20:31 +0100 Subject: [PATCH 2/2] Increase color contrast of light theme links --- assets/css/default.css | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/assets/css/default.css b/assets/css/default.css index d714f16c..e403e606 100644 --- a/assets/css/default.css +++ b/assets/css/default.css @@ -496,7 +496,7 @@ video.video-js { .light-theme a:hover, .light-theme a:active { - color: #167ac6 !important; + color: #075A9E !important; } .light-theme a.pure-button-primary:hover { @@ -504,7 +504,7 @@ video.video-js { } .light-theme a { - color: #61809b; + color: #335d7a; text-decoration: none; } @@ -522,7 +522,7 @@ video.video-js { @media (prefers-color-scheme: light) { .no-theme a:hover, .no-theme a:active { - color: #167ac6 !important; + color: #075A9E !important; } .no-theme a.pure-button-primary:hover { @@ -530,7 +530,7 @@ video.video-js { } .no-theme a { - color: #61809b; + color: #335d7a; text-decoration: none; }