Merge pull request #1360 from lbryio/dark-patch

Dark theme patch
This commit is contained in:
Sean Yesmunt 2018-04-24 01:14:48 -04:00 committed by GitHub
commit e66c9928d8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 8 additions and 6 deletions

View file

@ -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)) * 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 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 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 ## [0.21.2] - 2018-03-22

View file

@ -1,8 +1,8 @@
@charset "UTF-8"; @charset "UTF-8";
@import '_reset'; @import '_reset.scss';
@import '_vars'; @import '_vars.scss';
@import '_gui'; @import '_gui.scss';
@import 'component/_table'; @import 'component/_table.scss';
@import 'component/_button.scss'; @import 'component/_button.scss';
@import 'component/_card.scss'; @import 'component/_card.scss';
@import 'component/_file-download.scss'; @import 'component/_file-download.scss';

View file

@ -8,7 +8,7 @@
--color-download: rgba(255, 255, 255, 0.75); --color-download: rgba(255, 255, 255, 0.75);
--color-download-overlay: var(--color-black); --color-download-overlay: var(--color-black);
--color-bg: #203049; --color-bg: #203049;
--color-bg-alt: #13233C; --color-bg-alt: #2D3D56;
--color-placeholder: var(--color-bg-alt); --color-placeholder: var(--color-bg-alt);
/* Text */ /* Text */
@ -83,7 +83,7 @@
--modal-bg: var(--card-bg); --modal-bg: var(--card-bg);
--modal-overlay-bg: rgba(32,48,73, 0.75); --modal-overlay-bg: rgba(32,48,73, 0.75);
--modal-border: 1px solid rgba(0, 0, 0, 0.25); --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 */
--scrollbar-thumb-bg: rgba(255, 255, 255, 0.20); --scrollbar-thumb-bg: rgba(255, 255, 255, 0.20);