-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathstyle_default.css
39 lines (36 loc) · 1.23 KB
/
style_default.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
.react-scrollbar-default .-reactjs-scrollbar-area\:scrolling {
transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-webkit-transition: all 0.5s ease;
-o-transition: all 0.5s ease; }
.react-scrollbar-default .-reactjs-scrollbar-area\:scrolling .-reactjs-scrollbar-thumb {
transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-webkit-transition: all 0.5s ease;
-o-transition: all 0.5s ease; }
.react-scrollbar-default .-reactjs-scrollbar-area:hover .-reactjs-scrollbar-track {
opacity: 1; }
.react-scrollbar-default .-reactjs-scrollbar-track {
transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-webkit-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
opacity: 0.5;
background: transparent; }
.react-scrollbar-default .-reactjs-scrollbar-track:hover {
background: rgba(0, 0, 0, 0.3); }
.react-scrollbar-default .-reactjs-scrollbar-track\:vertical {
width: 10px;
height: 100%;
top: 0;
right: 0; }
.react-scrollbar-default .-reactjs-scrollbar-track\:horizontal {
height: 10px;
width: 100%;
bottom: 0;
right: 0; }
.react-scrollbar-default .-reactjs-scrollbar-thumb {
background: rgba(0, 0, 0, 0.5);
cursor: default;
width: 10px;
height: 10px; }