mirror of
https://github.com/twbs/bootstrap.git
synced 2024-11-29 11:24:18 +01:00
24 lines
387 B
SCSS
24 lines
387 B
SCSS
// Progress bars
|
|
|
|
@mixin progress-variant($color) {
|
|
&[value]::-webkit-progress-value {
|
|
background-color: $color;
|
|
}
|
|
|
|
&[value]::-moz-progress-bar {
|
|
background-color: $color;
|
|
}
|
|
|
|
// IE10+, Microsoft Edge
|
|
&[value]::-ms-fill {
|
|
background-color: $color;
|
|
}
|
|
|
|
// IE9
|
|
@media screen and (min-width:0\0) {
|
|
.progress-bar {
|
|
background-color: $color;
|
|
}
|
|
}
|
|
}
|