-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtr.scroll.css
66 lines (65 loc) · 1.3 KB
/
tr.scroll.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
60
61
62
63
64
65
66
/* TR Scrollbar */
.tr_scrollbar {
width: 4px;
z-index: 1000;
overflow: hidden;
position: absolute;
/*top: 0px;*/
/* float: right;
right: 0px;*/
-moz-user-select: -moz-none;
-khtml-user-select: none;
-webkit-user-select: none;
-ms-user-select: none;
user-select: none;
}
.tr_scrollbar_background {
width: 4px;
background: rgba(50, 50, 50, 0.47);
float: right;
z-index: 1000;
overflow: hidden;
border-radius: 2px;
position: relative;
cursor: pointer;
}
.tr_scrollbar_inner {
width: 4px;
background: rgba(255, 255, 255, 0.9);
z-index: 1000;
overflow: hidden;
border-radius: 2px;
cursor: pointer;
position: absolute;
}
.tr_scrollbar_inner:hover,
.tr_scrollbar_inner_hover {
background: rgba(199, 224, 250, 0.9);
z-index: 1001;
overflow: hidden;
}
.tr_scrollbar_invible {
width: 30px;
margin-left: -10px;
background: rgba(255, 0, 0, 0);
z-index: 1000;
overflow: hidden;
border-radius: 2px;
}
/*
.tr_scrollbar_invible:hover {
width:200px;
margin-left:100px;
}
*/
.tr_scrollbar_width_hover {
width: 14px;
border-radius: 7px;
}
.tr_forbid_selection {
-moz-user-select: -moz-none;
-khtml-user-select: none;
-webkit-user-select: none;
-ms-user-select: none;
user-select: none;
}