mirror of
https://github.com/twbs/bootstrap.git
synced 2024-12-04 16:24:22 +01:00
16 lines
288 B
Plaintext
16 lines
288 B
Plaintext
// 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;
|
|
}
|
|
}
|
|
}
|