blob: ea894b235f5fe26b992feff99c57b27fe2b93dcb (
plain) (
blame)
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
|
/*
Windows 8 Scrollbar CSS
by ntim007
http://ntim007.kodingen.com
http://ntim007.deviantart.com
*/
/* For Chrome or Safari */
/* Scrollbar background color */
::-webkit-scrollbar {
background-color:#EFEFEF;
padding:0;
}
/* UP, DOWN, LEFT and RIGHT button styling */
::-webkit-scrollbar-button:hover {
background-color:#DBDBDB !important;
}
::-webkit-scrollbar-button:vertical:decrement {
background:url('images/scrollbar/up.png') no-repeat center;
}
::-webkit-scrollbar-button:vertical:increment {
background:url('images/scrollbar/down.png') no-repeat center;
}
::-webkit-scrollbar-button:horizontal:decrement {
background:url('images/scrollbar/left.png') no-repeat center;
}
::-webkit-scrollbar-button:horizontal:increment {
background:url('images/scrollbar/right.png') no-repeat center;
}
::-webkit-scrollbar-button:active:vertical:decrement {
background:url('images/scrollbar/up-active.png') no-repeat center #606060 !important;
}
::-webkit-scrollbar-button:active:vertical:increment {
background:url('images/scrollbar/down-active.png') no-repeat center #606060 !important;
}
::-webkit-scrollbar-button:active:horizontal:decrement {
background:url('images/scrollbar/left-active.png') no-repeat center #606060 !important;
}
::-webkit-scrollbar-button:active:horizontal:increment {
background:url('images/scrollbar/right-active.png') no-repeat center #606060 !important;
}
/* Scrollbar thumb */
::-webkit-scrollbar-thumb {
background-color:#CDCDCD;
opacity: 1;
}
::-webkit-scrollbar-thumb:hover {
background-color:#A6A6A6;
}
::-webkit-scrollbar-thumb:active {
background-color:#606060;
}
/* Some unstyled stuff */
::-webkit-scrollbar-track {
}
::-webkit-scrollbar-track-piece {
}
::-webkit-scrollbar-corner {
}
::-webkit-resizer {
}
|