1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
|
/*************
* scrollbar *
*************/
.scrollbar {
border-width: 0;
border-style: none;
padding: 0;
border-radius: 3px;
}
.scrollbars-junction,
.scrollbar.trough {
border-width: 0;
border-radius: 0;
background-color: @theme_bg_color;
background-image: none;
}
.scrollbar.button,
.scrollbar.button:active,
.scrollbar.button:active:hover {
border-width: 0;
border-radius: 0;
background-color: transparent;
background-image: none;
color: shade(@theme_bg_color, 0.6);
}
.scrollbar.slider {
border-width: 0;
border-radius: 10px;
background-color: shade(@button_normal_color, 1.1);
}
.scrollbar.slider:hover,
.scrollbar.slider.vertical:hover {
background-color: @button_normal_color;
}
.scrollbar.slider:active,
.scrollbar.slider.vertical:active {
background-color: @theme_selected_bg_color;
}
.scrollbar.trough,
.scrollbar.trough.vertical {
border-width: 0;
border-radius: 0;
background-color: transparent;
}
.scrollbar.slider.fine-tune:prelight:active {
background-size: 50%;
background-repeat: no-repeat;
background-position: center;
}
/* overlay scrollbar */
OsThumb {
color: shade(@theme_bg_color, 0.6);
}
OsThumb:selected,
OsScrollbar:selected {
background-color: @theme_selected_bg_color;
}
OsThumb:active,
OsScrollbar:active {
background-color: @theme_selected_bg_color;
}
OsThumb:insensitive,
OsScrollbar:insensitive {
background-color: shade(@theme_bg_color, 0.9);
}
|