0
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-02-19 16:54:24 +01:00

fixes #18658: no more min-width action on progress bars. we had them in v3 and ended up removing them for additional problems it caused folks.

This commit is contained in:
Mark Otto 2016-01-06 14:33:58 -08:00
parent 8c85934621
commit d46c7ef565

View File

@ -46,12 +46,6 @@
border-bottom-left-radius: $border-radius;
}
// Tweaks for empty progress bar
.progress[value="0"]::-moz-progress-bar {
min-width: 2rem;
color: $gray-light;
background-color: transparent;
background-image: none;
}
// Tweaks for full progress bar
.progress[value="100"]::-moz-progress-bar {
border-top-right-radius: $border-radius;
@ -90,12 +84,6 @@ base::-moz-progress-bar, // Absurd-but-syntactically-valid selector to make thes
border-top-left-radius: $border-radius;
border-bottom-left-radius: $border-radius;
}
.progress[width^="0"] {
min-width: 2rem;
color: $gray-light;
background-color: transparent;
background-image: none;
}
.progress[width="100%"] {
border-top-right-radius: $border-radius;
border-bottom-right-radius: $border-radius;