fix: disabled primary button in dark mode

This commit is contained in:
Sean Yesmunt 2018-10-31 20:53:23 -04:00
parent e5db270b1c
commit c3ef95daaa
2 changed files with 13 additions and 5 deletions
src/renderer/scss
component
themes

View file

@ -74,8 +74,7 @@
} }
} }
&.btn--disabled:disabled { &:disabled {
// wtf?
cursor: default; cursor: default;
&.btn--primary { &.btn--primary {

View file

@ -82,11 +82,20 @@ 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) { //
// BUTTON
//
.btn {
&.btn--alt:not(:disabled) {
background-color: rgba($lbry-white, 0.1); background-color: rgba($lbry-white, 0.1);
color: $lbry-gray-1; color: $lbry-gray-1;
} }
&.btn--primary:disabled {
background-color: rgba($lbry-teal-5, 0.15);
}
}
.search__top { .search__top {
background-color: rgba($lbry-white, 0.15); background-color: rgba($lbry-white, 0.15);
} }