dojox
Version:
Dojo eXtensions, a rollup of many useful sub-projects and varying states of maturity – from very stable and robust, to alpha and experimental. See individual projects contain README files for details.
36 lines (35 loc) • 728 B
CSS
/* dojox.mobile.ProgressBar */
.mblProgressBar {
position: relative;
border-radius: 0px;
height: 2px;
background-image: none;
background-color: #a7a7aa;
}
.mblProgressBarProgress {
-webkit-transition-property: width;
transition-property: width;
-webkit-transition-duration: 0.25s;
transition-duration: 0.25s;
border-top-left-radius: 6px;
border-bottom-left-radius: 6px;
background-image: none;
background-color: #007aff;
height: 2px;
}
.mblProgressBarComplete {
border-radius: 0px;
}
.mblProgressBarNotStarted {
border-left: none;
border-right: none;
}
.mblProgressBarMsg {
position: absolute;
top: 0px;
width: 100%;
height: 100%;
text-align: center;
font-size: 12px;
top: 3px;
}