Rc fixes #2085

Merged
neb-b merged 11 commits from rc-fixes into master 2018-11-02 19:33:01 +01:00
2 changed files with 13 additions and 5 deletions
Showing only changes of commit c3ef95daaa - Show all commits

View file

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

View file

@ -82,9 +82,18 @@ html[data-theme='dark'] {
background-color: rgba($lbry-red-1, 0.1);
}
.btn.btn--alt:not(:disabled) {
background-color: rgba($lbry-white, 0.1);
color: $lbry-gray-1;
//
// BUTTON
//
.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 {