mirror of
https://github.com/vinceliuice/WhiteSur-gtk-theme.git
synced 2025-06-07 16:03:03 +00:00
31 lines
622 B
SCSS
31 lines
622 B
SCSS
/* Scrollbars */
|
|
|
|
StScrollView {
|
|
&.vfade { -st-vfade-offset: 68px; }
|
|
&.hfade { -st-hfade-offset: 68px; }
|
|
}
|
|
|
|
StScrollBar {
|
|
padding: 0;
|
|
margin: 6px;
|
|
|
|
StScrollView & {
|
|
min-width: 8px;
|
|
min-height: 8px;
|
|
}
|
|
|
|
StBin#trough {
|
|
border-radius: $circular_radius;
|
|
background-color: $divider_color;
|
|
}
|
|
|
|
StButton#vhandle, StButton#hhandle {
|
|
border-radius: $circular_radius;
|
|
background-color: $hint_fg_color;
|
|
border: 4px solid transparent; //would be nice to margin or at least to transparent
|
|
|
|
&:hover { background-color: $alt_fg_color; }
|
|
&:active { background-color: $fg_color; }
|
|
}
|
|
}
|