diff --git a/src/renderer/scss/component/_button.scss b/src/renderer/scss/component/_button.scss index a12d1a77e..b40e17767 100644 --- a/src/renderer/scss/component/_button.scss +++ b/src/renderer/scss/component/_button.scss @@ -153,6 +153,7 @@ font-size: 1em; min-width: 0; text-align: left; + transition: none; } &.btn--no-style { diff --git a/src/renderer/scss/themes/_dark.scss b/src/renderer/scss/themes/_dark.scss index 6248f3e9f..870921cad 100644 --- a/src/renderer/scss/themes/_dark.scss +++ b/src/renderer/scss/themes/_dark.scss @@ -96,10 +96,16 @@ html[data-theme='dark'] { } } + // + // SEARCH + // .search__top { background-color: rgba($lbry-white, 0.15); } + // + // TABLE + // table.table, .markdown-preview table { thead { @@ -117,10 +123,18 @@ html[data-theme='dark'] { } } + // + // ITEM LIST + // .item-list { background-color: rgba($lbry-white, 0.1); } + .item-list__item--selected { + background-color: $lbry-black; + color: $lbry-white; + } + .item-list__item:not(:last-of-type) { border-bottom: 1px solid rgba($lbry-gray-1, 0.1); }