fix selected color on history list in dark mode
This commit is contained in:
parent
02457ca11c
commit
d5a19eb530
2 changed files with 15 additions and 0 deletions
|
@ -153,6 +153,7 @@
|
||||||
font-size: 1em;
|
font-size: 1em;
|
||||||
min-width: 0;
|
min-width: 0;
|
||||||
text-align: left;
|
text-align: left;
|
||||||
|
transition: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
&.btn--no-style {
|
&.btn--no-style {
|
||||||
|
|
|
@ -96,10 +96,16 @@ html[data-theme='dark'] {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//
|
||||||
|
// SEARCH
|
||||||
|
//
|
||||||
.search__top {
|
.search__top {
|
||||||
background-color: rgba($lbry-white, 0.15);
|
background-color: rgba($lbry-white, 0.15);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//
|
||||||
|
// TABLE
|
||||||
|
//
|
||||||
table.table,
|
table.table,
|
||||||
.markdown-preview table {
|
.markdown-preview table {
|
||||||
thead {
|
thead {
|
||||||
|
@ -117,10 +123,18 @@ html[data-theme='dark'] {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//
|
||||||
|
// ITEM LIST
|
||||||
|
//
|
||||||
.item-list {
|
.item-list {
|
||||||
background-color: rgba($lbry-white, 0.1);
|
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) {
|
.item-list__item:not(:last-of-type) {
|
||||||
border-bottom: 1px solid rgba($lbry-gray-1, 0.1);
|
border-bottom: 1px solid rgba($lbry-gray-1, 0.1);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue