Fix background color of osd buttons

This commit is contained in:
EliverLara
2019-02-06 12:09:17 -06:00
parent 011d8b2fea
commit ba7c80cacd
4 changed files with 51 additions and 78 deletions

View File

@@ -17,12 +17,7 @@
transition: $backdrop_transition;
}
button, button.flat {
@include button(osd);
&:hover {
background: lighten($osd_bg_color, 12%);
}
}
button { @extend %osd_button; }
border { border: none; }
}

View File

@@ -206,7 +206,7 @@ button {
&:backdrop { @include button(osd-backdrop); }
&.flat {
@include button(undecorated);
@include button(osd);
box-shadow: none; //FIXME respect no edge on the button mixin
text-shadow: 0 1px black;
@@ -221,7 +221,7 @@ button {
box-shadow: none;
}
&:backdrop { @include button(undecorated); }
&:backdrop { @include button(osd-backdrop); }
&:active,
&:checked { @include button(osd-active); }