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
|
/*
dark rgb(102,102,102)
medium rgb(152,153,153)
gray: rgb(204,204,204)
bright: white;
*/
.dynamic-slider-control {
position: relative;
background-color: rgb(204,204,204);
-moz-user-focus: normal;
-moz-user-select: none;
cursor: default;
}
.horizontal {
width: 200px;
height: 27px;
}
.vertical {
width: 29px;
height: 200px;
}
.dynamic-slider-control input {
display: none;
}
.dynamic-slider-control .handle {
position: absolute;
font-size: 1px;
overflow: hidden;
-moz-user-select: none;
cursor: default;
}
.dynamic-slider-control.horizontal .handle {
width: 15px;
height: 16px;
background-image: url("handle.horizontal.png");
}
.dynamic-slider-control.horizontal .handle div {}
.dynamic-slider-control.horizontal .handle.hover {}
.dynamic-slider-control.vertical .handle {
width: 16px;
height: 15px;
background-image: url("handle.vertical.png");
}
.dynamic-slider-control.vertical .handle.hover {}
.dynamic-slider-control .line {
position: absolute;
font-size: 0.01mm;
overflow: hidden;
border: 1px solid;
border-color: rgb(102,102,102) white
white rgb(102,102,102);
behavior: url("css/boxsizing.htc"); /* ie path bug */
box-sizing: content-box;
-moz-box-sizing: content-box;
}
.dynamic-slider-control.vertical .line {
width: 4px;
}
.dynamic-slider-control.horizontal .line {
height: 4px;
}
.dynamic-slider-control .line div {
width: 2px;
height: 2px;
border: 1px solid;
border-color: rgb(152,153,153) rgb(102,102,102)
rgb(102,102,102) rgb(152,153,153);
}
|