You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
98 lines
2.3 KiB
98 lines
2.3 KiB
/* dojox.mobile.Slider */ |
|
.mblSlider { |
|
margin: 15px; |
|
border-style: inset; |
|
border-width: 1px; |
|
border-radius: 10em; |
|
background-image: -webkit-gradient(linear, left top, left bottom, from(#bdbebd), to(#f7f3f7)); |
|
background-image: linear-gradient(to bottom, #bdbebd 0%, #f7f3f7 100%); |
|
-webkit-user-select: none; |
|
-ms-user-select: none; |
|
-webkit-box-sizing: content-box; |
|
box-sizing: content-box; |
|
border-color: #b0b0b0; |
|
} |
|
.mblSliderH { |
|
width: 200px; |
|
height: 8px; |
|
} |
|
.mblSliderH .mblSliderProgressBar { |
|
height: 100%; |
|
} |
|
.mblSliderH .mblSliderHandle { |
|
top: 50%; |
|
} |
|
.mblSliderV { |
|
height: 200px; |
|
width: 8px; |
|
} |
|
.mblSliderV .mblSliderProgressBar { |
|
width: 100%; |
|
} |
|
.mblSliderV .mblSliderHandle { |
|
left: 50%; |
|
} |
|
.mblSliderProgressBar { |
|
border-radius: 10em; |
|
background-image: none; |
|
} |
|
.mblSliderHandle { |
|
margin: -10px 0 0 -10px; |
|
width: 18px; |
|
height: 18px; |
|
border-style: outset; |
|
border-width: 1px; |
|
border-radius: 10em; |
|
background-image: -webkit-gradient(linear, left top, left bottom, from(#9c9a9c), to(#848284)); |
|
background-image: linear-gradient(to bottom, #9c9a9c 0%, #848284 100%); |
|
border-color: transparent; |
|
} |
|
.mblSliderTransition { |
|
-webkit-transition-duration: 400ms; |
|
transition-duration: 400ms; |
|
} |
|
.mblSliderTouchBox { |
|
margin: 0; |
|
padding: 12pt; |
|
left: -12pt; |
|
top: -12pt; |
|
border: none; |
|
width: 100%; |
|
height: 100%; |
|
background-color: transparent; |
|
-webkit-tap-highlight-color: rgba(255, 255, 255, 0); |
|
} |
|
.mblSlider { |
|
border-style: none; |
|
border-radius: 0; |
|
background-image: none; |
|
background-color: transparent; |
|
border-color: #b0b0b0; |
|
} |
|
.mblSliderH { |
|
width: 200px; |
|
height: 3px; |
|
background-color: #292929; |
|
border-style: none; |
|
} |
|
.mblSliderV { |
|
height: 200px; |
|
width: 3px; |
|
background-color: #292929; |
|
border-style: none; |
|
} |
|
.mblSliderProgressBar { |
|
border: radius: 0; |
|
background-image: none; |
|
background-color: #33b5e5; |
|
} |
|
.mblSliderHandle { |
|
background: -webkit-gradient(radial, 9 9, 3, 9 9, 9, from(#33b5e5), color-stop(0, #33b5e5), color-stop(0.01, rgba(31, 83, 102, 0.8)), to(rgba(31, 83, 102, 0.8))); |
|
background-image: radial-gradient(circle closest-side at center, #ffffff 0%, #a435c5 50%, #251ae7 75%, #00a3ef 100%); |
|
border-color: transparent; |
|
} |
|
.mblSliderHandle:after { |
|
border-style: solid; |
|
background-image: none; |
|
border-color: transparent; |
|
}
|
|
|