Commit 1a1cab2d authored by Marcel Jackwerth's avatar Marcel Jackwerth

Invert progress-bar-stripes direction

parent 8e0afbea
...@@ -7,26 +7,26 @@ ...@@ -7,26 +7,26 @@
// Webkit // Webkit
@-webkit-keyframes progress-bar-stripes { @-webkit-keyframes progress-bar-stripes {
from { background-position: 0 0; } from { background-position: 40px 0; }
to { background-position: 40px 0; } to { background-position: 0 0; }
} }
// Firefox // Firefox
@-moz-keyframes progress-bar-stripes { @-moz-keyframes progress-bar-stripes {
from { background-position: 0 0; } from { background-position: 40px 0; }
to { background-position: 40px 0; } to { background-position: 0 0; }
} }
// IE9 // IE9
@-ms-keyframes progress-bar-stripes { @-ms-keyframes progress-bar-stripes {
from { background-position: 0 0; } from { background-position: 40px 0; }
to { background-position: 40px 0; } to { background-position: 0 0; }
} }
// Spec // Spec
@keyframes progress-bar-stripes { @keyframes progress-bar-stripes {
from { background-position: 0 0; } from { background-position: 40px 0; }
to { background-position: 40px 0; } to { background-position: 0 0; }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment