UNPKG

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.

31 lines (30 loc) 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; }