aboutsummaryrefslogtreecommitdiff
path: root/less/progress-bars.less
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2013-08-05 08:11:13 -0700
committerMark Otto <[email protected]>2013-08-05 08:11:13 -0700
commitd6ed590e830be786a7d63a2eacf70b788efd8097 (patch)
tree88211f27ebc0e0f5755621772d2493af16e940f4 /less/progress-bars.less
parent7a98af5ec82f230dfab774b213f401f47bd9e953 (diff)
downloadbootstrap-d6ed590e830be786a7d63a2eacf70b788efd8097.tar.xz
bootstrap-d6ed590e830be786a7d63a2eacf70b788efd8097.zip
Clean up mixins, fix #9100 (no ms-keyframes)
- Spacing tweaks in the general mixins - Add comments to transform mixins about IE support - Remove `-ms-keyframes` because only IE10+ supports it, and without prefix
Diffstat (limited to 'less/progress-bars.less')
-rw-r--r--less/progress-bars.less8
1 files changed, 1 insertions, 7 deletions
diff --git a/less/progress-bars.less b/less/progress-bars.less
index fe399abf7..ab9832315 100644
--- a/less/progress-bars.less
+++ b/less/progress-bars.less
@@ -18,19 +18,13 @@
to { background-position: 0 0; }
}
-// IE9
-@-ms-keyframes progress-bar-stripes {
- from { background-position: 40px 0; }
- to { background-position: 0 0; }
-}
-
// Opera
@-o-keyframes progress-bar-stripes {
from { background-position: 0 0; }
to { background-position: 40px 0; }
}
-// Spec
+// Spec and IE10+
@keyframes progress-bar-stripes {
from { background-position: 40px 0; }
to { background-position: 0 0; }