2014-12-03 06:02:35 +08:00
|
|
|
// Progress bars
|
|
|
|
|
|
|
|
@mixin progress-variant($color) {
|
|
|
|
&[value]::-webkit-progress-value {
|
|
|
|
background-color: $color;
|
|
|
|
}
|
|
|
|
|
|
|
|
&[value]::-moz-progress-bar {
|
|
|
|
background-color: $color;
|
|
|
|
}
|
|
|
|
|
2015-12-11 06:29:54 +08:00
|
|
|
// IE10+, Microsoft Edge
|
|
|
|
&[value]::-ms-fill {
|
|
|
|
background-color: $color;
|
|
|
|
}
|
|
|
|
|
2015-10-28 03:34:26 +08:00
|
|
|
// IE9
|
2015-05-16 03:17:09 +08:00
|
|
|
@media screen and (min-width:0\0) {
|
2014-12-03 06:02:35 +08:00
|
|
|
.progress-bar {
|
|
|
|
background-color: $color;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|