ng-zorro-antd-mobile
Version:
An enterprise-class mobile UI components based on Ant Design and Angular
40 lines (35 loc) • 749 B
text/less
@import '../../style/mixins';
@import '../../style/themes/default';
@pickerPrefixClass: am-progress;
progress {
appearance: none;
border: none;
/* Add dimensions */
width: 100%;
height: 4px;
position: relative;
}
progress::-webkit-progress-bar {
background-color: #ddd;
border-radius: 3px;
}
progress::-webkit-progress-value {
background-color: @brand-primary;
transition: all .3s linear 0s;
position: relative;
}
.@{pickerPrefixClass} {
display: block;
&-outer {
background-color: @border-color-base;
}
&-outer&-hide-outer {
background-color: transparent;
}
&-outer&-exceedance {
background-color: @brand-warning;
}
&-hide-outer::-webkit-progress-bar {
background-color: transparent;
}
}