blob: 698d15de90cd06cb35ae3fbba1fee559182b2503 (
plain)
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
|
.v-slider {
border-top: 1px solid #cccfd0;
border-bottom: 1px solid #cccfd0;
margin: 5px 0;
}
.v-slider-base {
/* changing the borders will require adjustments to ISlider.java */
height: 2px;
background: #f3f3f4;
border-top: 1px solid #cbcdce;
border-left: 1px solid #cccfd0;
border-right: 1px solid #cccfd0;
}
.v-slider-handle {
background: transparent url(img/handle-horizontal.png);
width: 12px;
height: 12px;
margin-top: -5px;
cursor: pointer;
}
.v-slider-handle:hover {
background-position: left bottom;
}
.v-slider-scrollbar .v-slider-handle,
.v-slider-scrollbar.v-slider-vertical .v-slider-handle {
background: #ffffff;
border: 1px solid #cccfd0;
border-radius: 6px;
-moz-border-radius: 6px;
-webkit-border-radius: 6px;
}
.v-slider-vertical {
width: 3px;
margin: 0 5px;
border: none;
border-left: 1px solid #cccfd0;
border-right: 1px solid #cccfd0;
}
.v-slider-vertical .v-slider-base {
width: 2px;
border-left: 1px solid #cbcdce;
border-right: none;
background: #f3f3f4;
border-top: 1px solid #cccfd0;
border-bottom: 1px solid #cccfd0;
}
.v-slider-vertical .v-slider-handle {
background: transparent url(img/handle-vertical.png);
width: 12px;
height: 12px;
margin-left: -5px;
}
.v-slider-vertical .v-slider-handle-active {
background-position: left bottom;
}
/* Disabled by default
.v-slider-error .v-slider-base {
background:transparent;
background-color: #FFE0E0;
}
*/
/* Disabled by default
.v-slider-required .v-slider-base {
background:transparent;
background-color: #FFE0E0;
}
*/
|