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.
65 lines
1.7 KiB
65 lines
1.7 KiB
/* dojox.mobile.Slider */ |
|
.mblSlider { |
|
margin: 15px; |
|
border-style: inset; |
|
border-width: 1px; |
|
border-radius: 6px; |
|
background-image: -webkit-gradient(linear, left top, left bottom, from(#f7f3f7), to(#cec5d6), color-stop(0.5, #ced3ce)); |
|
background-image: linear-gradient(to bottom, #f7f3f7 0%, #ced3ce 50%, #cec5d6 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: 6px; |
|
background-image: -webkit-gradient(linear, left top, left bottom, from(#088eef), to(#0851ad), color-stop(0.5, #0869c6)); |
|
background-image: linear-gradient(to bottom, #088eef 0%, #0869c6 50%, #0851ad 100%); |
|
} |
|
.mblSliderHandle { |
|
margin: -10px 0 0 -10px; |
|
width: 18px; |
|
height: 18px; |
|
border-style: outset; |
|
border-width: 1px; |
|
border-radius: 6px; |
|
background-image: -webkit-gradient(linear, left top, left bottom, from(#fafafa), to(#999999), color-stop(0.5, #bbbbbb)); |
|
background-image: linear-gradient(to bottom, #fafafa 0%, #bbbbbb 50%, #999999 100%); |
|
border-color: #9d9d9d; |
|
} |
|
.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); |
|
}
|
|
|