-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathjscrollpane.css
More file actions
108 lines (88 loc) · 1.51 KB
/
jscrollpane.css
File metadata and controls
108 lines (88 loc) · 1.51 KB
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
.jspContainer {
overflow:hidden;
position:relative;
}
.jspPane {
position:absolute;
}
.jspVerticalBar {
background:none repeat scroll 0 0;
height:100%;
position:absolute;
right:0;
top:0;
width:16px;
}
.jspHorizontalBar {
background:none repeat scroll 0 0;
bottom:0;
height:12px;
left:0;
position:absolute;
width:100%;
}
.jspVerticalBar *, .jspHorizontalBar * {
margin:0;
padding:0;
}
.jspCap {
display:none;
}
.jspHorizontalBar .jspCap {
float:left;
}
.jspTrack {
background:none repeat scroll 0 0 #EFEFEF;
position:relative;
}
.jspDrag {
background:none repeat scroll 0 0 #c8d9e8;
cursor:pointer;
left:0;
position:relative;
top:0;
}
.jspDrag.jspHover,
.jspDrag.jspActive {
background-color: #A4C0D9;
}
.jspHorizontalBar .jspTrack, .jspHorizontalBar .jspDrag {
float:left;
height:100%;
}
.jspHorizontalBar .jspDrag {
height: 9px;
margin-top: 2px;
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
border-radius: 4px;
}
.jspArrow {
background:none repeat scroll 0 0 #50506D;
cursor:pointer;
display:block;
text-indent:-20000px;
}
.jspArrow.jspDisabled {
background:none repeat scroll 0 0 #80808D;
cursor:default;
}
.jspVerticalBar .jspArrow {
height:16px;
}
.jspHorizontalBar .jspArrow {
float:left;
height:100%;
width:16px;
}
.jspVerticalBar .jspArrow:focus {
outline:medium none;
}
.jspCorner {
background:none repeat scroll 0 0 #EEEEF4;
float:left;
height:100%;
}
* html .jspCorner {
margin:0 -3px 0 0;
}