31 lines
622 B
SCSS
Raw Normal View History

2021-04-08 22:59:05 +08:00
/* Scrollbars */
2020-12-27 18:33:02 +08:00
StScrollView {
&.vfade { -st-vfade-offset: 32px; }
&.hfade { -st-hfade-offset: 32px; }
}
StScrollBar {
padding: 0;
StScrollView & {
min-width: 16px;
2021-04-08 22:59:05 +08:00
min-height: 16px;
2020-12-27 18:33:02 +08:00
}
StBin#trough {
margin: 6px;
border-radius: 100px;
background-color: $divider_color;
}
StButton#vhandle, StButton#hhandle {
border-radius: 100px;
background-color: $hint_fg_color;
//border: 4px solid transparent; //would be nice to margin or at least to transparent
margin: 6px;
&:hover { background-color: $alt_fg_color; }
&:active { background-color: $fg_color; }
}
}