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.
35 lines
728 B
35 lines
728 B
/* dojox.mobile.ProgressBar */ |
|
.mblProgressBar { |
|
position: relative; |
|
border-radius: 0px; |
|
height: 2px; |
|
background-image: none; |
|
background-color: #333333; |
|
} |
|
.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: #33b5e5; |
|
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; |
|
}
|
|
|