_scrollbar.scss
ASCII text
1
/* Scrollbars */
2
3
StScrollView {
4
&.vfade { -st-vfade-offset: 68px; }
5
&.hfade { -st-hfade-offset: 68px; }
6
}
7
8
StScrollBar {
9
padding: 0;
10
11
StScrollView & {
12
min-width: 14px;
13
min-height: 14px;
14
}
15
16
StBin#trough {
17
border-radius: 0;
18
background-color: transparent;
19
}
20
21
StButton#vhandle, StButton#hhandle {
22
border-radius: 8px;
23
background-color: mix($fg_color, $bg_color, 60%);
24
//border: 3px solid transparent; //would be nice to margin or at least to transparent
25
margin: 3px;
26
&:hover { background-color: mix($fg_color, $bg_color, 80%); }
27
&:active { background-color: $selected_bg_color; }
28
}
29
}