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.
48 lines
975 B
48 lines
975 B
/* dojox.mobile.ProgressBar */ |
|
.mblProgressBar { |
|
position: relative; |
|
height: 3px; |
|
background-color: transparent; |
|
border: none; |
|
margin-top: 8px; |
|
margin-bottom: 8px; |
|
} |
|
.mblProgressBarProgress { |
|
-webkit-transition-property: width; |
|
transition-property: width; |
|
-webkit-transition-duration: 0.25s; |
|
transition-duration: 0.25s; |
|
height: 3px; |
|
border: none; |
|
background-color: Highlight; |
|
} |
|
.mblProgressBarNotStarted { |
|
border-left: none; |
|
border-right: none; |
|
} |
|
.mblProgressBarMsg { |
|
position: absolute; |
|
top: 0px; |
|
width: 100%; |
|
height: 100%; |
|
text-align: center; |
|
font-size: 12px; |
|
top: 3px; |
|
} |
|
.mblProgressBar:before { |
|
content: ''; |
|
position: absolute; |
|
height: 3px; |
|
width: 100%; |
|
background-color: Highlight; |
|
opacity: 0.2; |
|
} |
|
.mblProgressBar[disabled]:before { |
|
background-color: #808080; |
|
} |
|
.mblProgressBar[disabled] .mblProgressBarProgress { |
|
background-color: #808080; |
|
} |
|
.mblProgressBar[disabled] .mblProgressBarMsg { |
|
color: #808080; |
|
}
|
|
|