From 0aa9a7002d639d73c9612193229bbc89b6a9f4d3 Mon Sep 17 00:00:00 2001 From: btzr-io Date: Thu, 19 Apr 2018 13:21:32 -0600 Subject: [PATCH 1/2] fix css var color-bg-alt in dark theme --- src/renderer/scss/all.scss | 8 ++++---- static/themes/dark.css | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/renderer/scss/all.scss b/src/renderer/scss/all.scss index db8defe00..ab9b445d8 100644 --- a/src/renderer/scss/all.scss +++ b/src/renderer/scss/all.scss @@ -1,8 +1,8 @@ @charset "UTF-8"; -@import '_reset'; -@import '_vars'; -@import '_gui'; -@import 'component/_table'; +@import '_reset.scss'; +@import '_vars.scss'; +@import '_gui.scss'; +@import 'component/_table.scss'; @import 'component/_button.scss'; @import 'component/_card.scss'; @import 'component/_file-download.scss'; diff --git a/static/themes/dark.css b/static/themes/dark.css index 00185a9df..aa2be73b6 100644 --- a/static/themes/dark.css +++ b/static/themes/dark.css @@ -8,7 +8,7 @@ --color-download: rgba(255, 255, 255, 0.75); --color-download-overlay: var(--color-black); --color-bg: #203049; - --color-bg-alt: #13233C; + --color-bg-alt: #2D3D56; --color-placeholder: var(--color-bg-alt); /* Text */ @@ -83,7 +83,7 @@ --modal-bg: var(--card-bg); --modal-overlay-bg: rgba(32,48,73, 0.75); --modal-border: 1px solid rgba(0, 0, 0, 0.25); - --modal-btn-bg-color: #2D3D56; + --modal-btn-bg-color: var(--color-bg-alt); /* Scrollbar */ --scrollbar-thumb-bg: rgba(255, 255, 255, 0.20); From 3fda7c386aa830f0929f46bda6ef78d2c9392ac6 Mon Sep 17 00:00:00 2001 From: btzr-io Date: Thu, 19 Apr 2018 13:44:21 -0600 Subject: [PATCH 2/2] update changelog --- CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 40a2b0cda..27518d3d1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -23,6 +23,8 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/). * Black screen on macOS after maximizing LBRY and then closing ([#1235](https://github.com/lbryio/lbry-app/pull/1235)) * Fix dark theme ([#1034](https://github.com/lbryio/lbry-app/issues/1034)) * Fix download percentage indicator overlay ([#1271](https://github.com/lbryio/lbry-app/issues/1271)) + * Fix alternate row shading for transactions on dark theme ([#1355](https://github.com/lbryio/lbry-app/issues/#1355)) + * Fix Description box on Publish (dark theme) ([#1356](https://github.com/lbryio/lbry-app/issues/#1356)) ## [0.21.2] - 2018-03-22