blob: 7df6a4d66773dcac873833c68f948573df3fa6d7 (
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
|
.v-slider {
margin: 5px 0;
}
.v-slider-base {
/* changing the borders will require adjustments to ISlider.java */
height: 2px;
border-top: 1px solid #ddd;
background: #eee;
border-left: 1px solid #ddd;
border-right: 1px solid #eee;
}
.v-slider-handle {
background: #aaa;
width: 12px;
height: 12px;
margin-top: -5px;
font-size: 0;
}
.v-slider-vertical {
width: 2px;
height: auto;
margin: 0 5px;
border: none;
border-left: 1px solid #cccfd0;
border-right: 1px solid #cccfd0;
}
.v-slider-vertical .v-slider-base {
width: 2px;
border-bottom: 1px solid #eee;
border-right: none;
}
.v-slider-vertical .v-slider-handle {
width: 12px;
height: 12px;
font-size: 0;
margin-left: -5px;
}
/* Disabled by default
.v-slider-error .v-slider-base {
background: #FFE0E0;
}
*/
/* Disabled by default
.v-slider-required .v-slider-base {
background: #FFE0E0;
}
*/
/* IE specific styles */
.v-ie6 .v-slider,
.v-ie6 .v-slider-vertical {
margin: 0;
}
.v-ie6 .v-slider .v-slider-handle {
margin: -1px 0;
}
.v-ie6 .v-slider-vertical .v-slider-handle {
margin: 0 -1px;
}
|