mirror of
https://github.com/Hopiu/bootstrap.git
synced 2026-03-22 23:40:23 +00:00
15 lines
288 B
Text
15 lines
288 B
Text
// Progress bars
|
|
|
|
.progress-variant(@color) {
|
|
&[value]::-webkit-progress-value {
|
|
background-color: @color;
|
|
}
|
|
&[value]::-moz-progress-bar {
|
|
background-color: @color;
|
|
}
|
|
@media screen and (~"min-width:0\0") {
|
|
.progress-bar {
|
|
background-color: @color;
|
|
}
|
|
}
|
|
}
|