fix: disabled primary button in dark mode
This commit is contained in:
parent
e5db270b1c
commit
c3ef95daaa
2 changed files with 13 additions and 5 deletions
src/renderer/scss
|
@ -74,8 +74,7 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
&.btn--disabled:disabled {
|
&:disabled {
|
||||||
// wtf?
|
|
||||||
cursor: default;
|
cursor: default;
|
||||||
|
|
||||||
&.btn--primary {
|
&.btn--primary {
|
||||||
|
|
|
@ -82,9 +82,18 @@ html[data-theme='dark'] {
|
||||||
background-color: rgba($lbry-red-1, 0.1);
|
background-color: rgba($lbry-red-1, 0.1);
|
||||||
}
|
}
|
||||||
|
|
||||||
.btn.btn--alt:not(:disabled) {
|
//
|
||||||
background-color: rgba($lbry-white, 0.1);
|
// BUTTON
|
||||||
color: $lbry-gray-1;
|
//
|
||||||
|
.btn {
|
||||||
|
&.btn--alt:not(:disabled) {
|
||||||
|
background-color: rgba($lbry-white, 0.1);
|
||||||
|
color: $lbry-gray-1;
|
||||||
|
}
|
||||||
|
|
||||||
|
&.btn--primary:disabled {
|
||||||
|
background-color: rgba($lbry-teal-5, 0.15);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.search__top {
|
.search__top {
|
||||||
|
|
Loading…
Add table
Reference in a new issue