@include border-radius($border-radius);
}
.progress[value]::-ms-fill {
- background-color: #0074d9;
+ background-color: $progress-bar-color;
// Remove right-hand border of value bar from IE10+/Edge
border: 0;
}
@include box-shadow(inset 0 .1rem .1rem rgba(0,0,0,.1));
}
.progress[value]::-webkit-progress-value {
- background-color: #0074d9;
+ background-color: $progress-bar-color;
border-top-left-radius: $border-radius;
border-bottom-left-radius: $border-radius;
}
// .box-shadow(inset 0 .1rem .1rem rgba(0,0,0,.1));
// }
// .progress[value]::-moz-progress-bar {
-// background-color: #0074d9;
+// background-color: $progress-bar-color;
// border-top-left-radius: $border-radius;
// border-bottom-left-radius: $border-radius;
// }
display: inline-block;
height: $spacer-y;
text-indent: -999rem; // Simulate hiding of value as in native `<progress>`
- background-color: #0074d9;
+ background-color: $progress-bar-color;
border-top-left-radius: $border-radius;
border-bottom-left-radius: $border-radius;
}