2
0
mirror of https://github.com/tenrok/bootstrap.git synced 2026-05-21 13:24:08 +03:00

Invert progress-bar-stripes direction

This commit is contained in:
Marcel Jackwerth
2012-03-15 18:11:17 +01:00
parent 8e0afbeaa4
commit 1a1cab2d06
+8 -8
View File
@@ -7,26 +7,26 @@
// Webkit
@-webkit-keyframes progress-bar-stripes {
from { background-position: 0 0; }
to { background-position: 40px 0; }
from { background-position: 40px 0; }
to { background-position: 0 0; }
}
// Firefox
@-moz-keyframes progress-bar-stripes {
from { background-position: 0 0; }
to { background-position: 40px 0; }
from { background-position: 40px 0; }
to { background-position: 0 0; }
}
// IE9
@-ms-keyframes progress-bar-stripes {
from { background-position: 0 0; }
to { background-position: 40px 0; }
from { background-position: 40px 0; }
to { background-position: 0 0; }
}
// Spec
@keyframes progress-bar-stripes {
from { background-position: 0 0; }
to { background-position: 40px 0; }
from { background-position: 40px 0; }
to { background-position: 0 0; }
}