2022-05-05 22:42:15 +08:00

40 lines
746 B
SCSS

/* Buttons */
.button {
min-height: $medium_size;
padding: 0 16px;
border-radius: $bt_radius;
&, .popup-menu & {
@include button(flat-normal);
&:hover { @include button(flat-hover); }
&:active { @include button(flat-active); }
&:insensitive { @include button(flat-insensitive); }
&:focus { @include button(flat-focus); }
border: none;
}
}
%osd_button {
background-color: transparent;
border: none;
box-shadow: none;
outline: none;
color: rgba(white, 0.75);
&:hover {
background-color: rgba(white, 0.1);
color: white;
}
&:active {
background-color: rgba(white, 0.25);
color: white;
}
&:insensitive {
background-color: transparent;
color: rgba(white, 0.35);
}
}