blob: c8a47f8ae6e09f1c18458cfac80e564bf8b3d429 (
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
|
/* dojox.mobile.Slider */
.mblSlider {
background-image: url(compat/slider-h-bg.png);
-moz-border-radius: 2px;
-o-border-radius: 2px;
-ms-border-radius: 2px;
border-radius: 2px;
-moz-user-select: none; /* prevent selection */
-o-user-select: none;
-ms-user-select: none;
user-select: none;
-moz-box-sizing: content-box; /* make width and height consistent with a DIV */
-o-box-sizing: content-box;
-ms-box-sizing: content-box;
box-sizing: content-box;
}
.mblSlider.mblSliderV {
background: #BDBEBD;
}
.mblSliderProgressBar {
background-image: url(compat/slider-h-bar-bg.png);
background-repeat: repeat-x;
-moz-border-radius: 2px;
-o-border-radius: 2px;
-ms-border-radius: 2px;
border-radius: 2px;
}
.mblSliderV .mblSliderProgressBar {
background: #00A200;
}
.mblSliderHandle {
background-image: url(compat/slider-handle-bg.png);
-moz-border-radius: 2px;
-o-border-radius: 2px;
-ms-border-radius: 2px;
border-radius: 2px;
}
.mblSliderTransition {
-moz-transition-duration: 400ms;
-o-transition-duration: 400ms;
-ms-transition-duration: 400ms;
transition-duration: 400ms;
}
|