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.
27 lines
456 B
27 lines
456 B
@import "variables.less"; |
|
@import "../common/ProgressBar.less"; |
|
|
|
.mblProgressBar { |
|
&:before { |
|
content: ''; |
|
position: absolute; |
|
height: @mbl-progressBar-height; |
|
width: 100%; |
|
background-color: @win-accent-color; |
|
opacity: 0.2; |
|
} |
|
} |
|
|
|
.mblProgressBar[disabled] { |
|
&:before{ |
|
background-color: @win-disabled-color; |
|
} |
|
|
|
.mblProgressBarProgress { |
|
background-color: @win-disabled-color; |
|
} |
|
|
|
.mblProgressBarMsg { |
|
color: @win-disabled-color; |
|
} |
|
}
|
|
|