Commit c975f42e authored by Chris Rebert's avatar Chris Rebert

Merge pull request #13913 from hnrch02/webkit-keyframes

Partly revert cb7eb674
parents 15c63fa1 e9ac7c1e
...@@ -6,6 +6,13 @@ ...@@ -6,6 +6,13 @@
// Bar animations // Bar animations
// ------------------------- // -------------------------
// WebKit
@-webkit-keyframes progress-bar-stripes {
from { background-position: 40px 0; }
to { background-position: 0 0; }
}
// Spec and IE10+
@keyframes progress-bar-stripes { @keyframes progress-bar-stripes {
from { background-position: 40px 0; } from { background-position: 40px 0; }
to { background-position: 0 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