blob: 0c65bf1e732c8c19a1dd2cd40d49568857c700a0 (
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
|
@mixin base-slider {
.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;
}
.v-slider-feedback {
padding: 2px 5px;
background: #444;
color: #fff;
font-size: 11px;
line-height: 13px;
font-weight: bold;
font-family: Arial, Helvetica, sans-serif;
border-radius: 4px;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
margin: -2px 0 0 2px;
text-shadow: 0 1px 0 #000;
}
/* Disabled by default
.v-slider-error .v-slider-base {
background: #FFE0E0;
}
*/
/* Disabled by default
.v-slider-required .v-slider-base {
background: #FFE0E0;
}
*/
}
|