mirror of
https://github.com/Hopiu/bootstrap.git
synced 2026-03-21 15:00:23 +00:00
16 lines
277 B
SCSS
16 lines
277 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;
|
|
}
|
|
}
|