From 13810ca9891c23121802339e6f31f9b8c8b3b5a0 Mon Sep 17 00:00:00 2001 From: Sean Yesmunt Date: Tue, 27 Nov 2018 11:56:57 -0500 Subject: [PATCH] fix html in dark mode --- src/renderer/scss/themes/_dark.scss | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/src/renderer/scss/themes/_dark.scss b/src/renderer/scss/themes/_dark.scss index 56193fe9d..e0daa24d1 100644 --- a/src/renderer/scss/themes/_dark.scss +++ b/src/renderer/scss/themes/_dark.scss @@ -1,4 +1,11 @@ html[data-theme='dark'] { + // + // HTML Elements + // + blockquote { + background-color: rgba($lbry-black, 0.9); + } + .header { background-color: rgba($lbry-black, 0.9); } @@ -203,4 +210,11 @@ html[data-theme='dark'] { .expandable--closed::after { background-image: linear-gradient(to bottom, transparent 0%, $lbry-black 90%); } + + // + // File Viewer + // + .document-viewer { + background-color: rgba($lbry-gray-5, 0.2); + } }