From 062761d85026a3572c40b4b48885de550be452fc Mon Sep 17 00:00:00 2001 From: Sean Yesmunt Date: Fri, 7 Dec 2018 10:51:12 -0500 Subject: [PATCH] fix: md button color in dark mode --- src/renderer/scss/themes/_dark.scss | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/renderer/scss/themes/_dark.scss b/src/renderer/scss/themes/_dark.scss index b7e8b4d09..7a8914382 100644 --- a/src/renderer/scss/themes/_dark.scss +++ b/src/renderer/scss/themes/_dark.scss @@ -165,6 +165,10 @@ html[data-theme='dark'] { a { color: $lbry-white !important; // We need to use !important to override the CodeMirror styles + &.active { + background-color: rgba($lbry-black, 0.4); + } + &:hover { color: $lbry-black !important; }