fix selected color on history list in dark mode

This commit is contained in:
Sean Yesmunt 2018-11-06 10:13:12 -05:00
parent 02457ca11c
commit d5a19eb530
2 changed files with 15 additions and 0 deletions

View file

@ -153,6 +153,7 @@
font-size: 1em;
min-width: 0;
text-align: left;
transition: none;
}
&.btn--no-style {

View file

@ -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);
}