OLD | NEW |
---|---|
(Empty) | |
1 /* | |
2 * Imitate mac scrollbars on non-retina displays to workaround crbug.com/466039. | |
3 */ | |
4 @media | |
5 (-webkit-max-device-pixel-ratio: 1.1) { | |
Sam McNally
2015/03/26 02:31:54
1.0
raymes
2015/03/26 04:30:34
Done.
| |
6 | |
7 ::-webkit-scrollbar { | |
8 height: 14px; | |
9 width: 14px; | |
10 } | |
11 | |
12 ::-webkit-scrollbar-track, | |
13 ::-webkit-scrollbar-corner { | |
14 background-color: rgb(242,242,242); | |
15 } | |
16 | |
17 ::-webkit-scrollbar-thumb:vertical, | |
18 ::-webkit-scrollbar-thumb:horizontal { | |
19 -webkit-border-radius: 7px; | |
20 background-color: rgb(198,198,198); | |
21 border: 3px solid rgb(242,242,242); | |
22 } | |
23 | |
24 ::-webkit-scrollbar-thumb:vertical:hover, | |
25 ::-webkit-scrollbar-thumb:horizontal:hover { | |
26 background: rgb(126,126,126); | |
Sam McNally
2015/03/26 02:31:54
background-color
raymes
2015/03/26 04:30:34
Done.
| |
27 } | |
28 | |
29 } | |
OLD | NEW |