mirror of
https://github.com/vinceliuice/WhiteSur-gtk-theme.git
synced 2025-06-08 00:13:02 +00:00
17 lines
375 B
SCSS
17 lines
375 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;
|
|
}
|
|
}
|