From e9ac7c1e1c9198753f8a7ad706cc2bb20c9976ad Mon Sep 17 00:00:00 2001 From: Heinrich Fenkart Date: Tue, 24 Jun 2014 17:08:16 +0200 Subject: [PATCH] Partly revert cb7eb674accd24b6b73f26ef23cf4a301b6ebfaf Fixes #13911 --- less/progress-bars.less | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/less/progress-bars.less b/less/progress-bars.less index 3d4e6306ff..3ac52a29eb 100644 --- a/less/progress-bars.less +++ b/less/progress-bars.less @@ -6,6 +6,13 @@ // 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 { from { background-position: 40px 0; } to { background-position: 0 0; }