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.
30 lines
787 B
30 lines
787 B
/* dojox.mobile.ProgressBar */ |
|
.mblProgressBar { |
|
position: relative; |
|
height: 13px; |
|
background-color: #ffffff; |
|
border: 1px solid #048bf4; |
|
} |
|
.mblProgressBarProgress { |
|
-webkit-transition-property: width; |
|
transition-property: width; |
|
-webkit-transition-duration: 0.25s; |
|
transition-duration: 0.25s; |
|
height: 13px; |
|
background-image: -webkit-gradient(linear, left top, left bottom, from(#048bf4), to(#48adfc), color-stop(0.5, #048bf4)); |
|
background-image: linear-gradient(to bottom, #048bf4 0%, #048bf4 50%, #48adfc 100%); |
|
border-right: 1px solid #048bf4; |
|
} |
|
.mblProgressBarNotStarted { |
|
border-left: none; |
|
border-right: none; |
|
} |
|
.mblProgressBarMsg { |
|
position: absolute; |
|
top: 0px; |
|
width: 100%; |
|
height: 100%; |
|
text-align: center; |
|
font-size: 12px; |
|
top: -1px; |
|
}
|
|
|