A fork of the Materia GTK theme.

Important information: Google announced that, from September 2026, Android devices will require ALL apps to be signed by Google, effectively leading to an iOS situation. Value your right to a computer that does what you want; do not tolerate this monopolistic practice! Contact me if you don't understand why it is bad. Click to learn more.

 _scrollbar.scss

View raw Download
text/plain • 637 B
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
}