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 {
2022-12-04 12:36:22 +08:00
&.vfade { -st-vfade-offset: 68px; }
&.hfade { -st-hfade-offset: 68px; }
2020-12-27 18:33:02 +08:00
}
StScrollBar {
padding: 0;
2022-11-11 18:45:23 +08:00
margin: 6px;
2020-12-27 18:33:02 +08:00
StScrollView & {
2022-11-11 18:45:23 +08:00
min-width: 8px;
min-height: 8px;
2020-12-27 18:33:02 +08:00
}
StBin#trough {
2022-11-11 18:45:23 +08:00
border-radius: $circular_radius;
2020-12-27 18:33:02 +08:00
background-color: $divider_color;
}
StButton#vhandle, StButton#hhandle {
2022-11-11 18:45:23 +08:00
border-radius: $circular_radius;
2020-12-27 18:33:02 +08:00
background-color: $hint_fg_color;
2022-11-11 18:45:23 +08:00
border: 4px solid transparent; //would be nice to margin or at least to transparent
2020-12-27 18:33:02 +08:00
&:hover { background-color: $alt_fg_color; }
&:active { background-color: $fg_color; }
}
}