-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvar.css
59 lines (45 loc) · 1.49 KB
/
var.css
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
/*
decentscroll
normalize scrollbar css for chrome and ie. Sorry no firefox supports
https://github.com/jebaird/decentscroll
@author Jesse Baird <[email protected]>
@license MIT
*/
:root {
/* this is the default color when the track-background is not in play */
--scrollbar-background: #E5E5E5;
/* #chrome only */
--scrollbar-width: 6px;
/* #chrome only */
--scrollbar-border: 1px none red ;
/*states */
--scrollbar-background-hover: #D6D6D6;
--scrollbar-width-hover: inital;
--scrollbar-border-hover: 1px none black ;
/*
this is the default color of the track when the scroll-bark-track-piece-background is not in play
IE: this is what is used for the track BG
*/
--track-background: transparent;
--scrollbar-button-background: transparent;
--scrollbar-button-display: none;
--scrollbar-button-height: auto;
/* #chrome only */
--resizer-background: inital;
/* #chrome only */
--resizer-display: none;
/*
this is the piece of the track that is not covered by the scrollbar-thumb
IE doesn't support this prop
*/
--scrollbar-track-peice-background: transparent;
/*
this is the marker in the track
IE only supports changing the background color
*/
--scrollbar-thumb-background: #8a8a8a;
/* #chrome only */
--scrollbar-thumb-border: 1px none gray;
--scrollbar-thumb-height: auto;
--scrollbar-thumb-boarder-raduis: 0px;
}