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.
29 lines
574 B
29 lines
574 B
/* dojox.mobile.ProgressBar */ |
|
.mblProgressBar { |
|
position: relative; |
|
height: 22px; |
|
background-color: white; |
|
padding: 1px; |
|
} |
|
.mblProgressBarProgress { |
|
-webkit-transition-property: width; |
|
transition-property: width; |
|
-webkit-transition-duration: 0.25s; |
|
transition-duration: 0.25s; |
|
background-color: #298eff; |
|
height: 22px; |
|
} |
|
.mblProgressBarNotStarted { |
|
border-left: none; |
|
border-right: none; |
|
} |
|
.mblProgressBarMsg { |
|
position: absolute; |
|
top: 0px; |
|
width: 100%; |
|
height: 100%; |
|
text-align: center; |
|
font-size: 12px; |
|
top: 2px; |
|
font-size: 18px; |
|
}
|
|
|