diff options
| author | Heinrich Fenkart <[email protected]> | 2014-06-24 17:08:16 +0200 |
|---|---|---|
| committer | Heinrich Fenkart <[email protected]> | 2014-06-24 17:08:16 +0200 |
| commit | e9ac7c1e1c9198753f8a7ad706cc2bb20c9976ad (patch) | |
| tree | ce0d2817ceec85d8ff76d468ab7085d0238e944d /less | |
| parent | a0e98adebf949e83ffadcd1604ea5c1a3b3fe531 (diff) | |
| download | bootstrap-e9ac7c1e1c9198753f8a7ad706cc2bb20c9976ad.tar.xz bootstrap-e9ac7c1e1c9198753f8a7ad706cc2bb20c9976ad.zip | |
Partly revert cb7eb674accd24b6b73f26ef23cf4a301b6ebfaf
Fixes #13911
Diffstat (limited to 'less')
| -rw-r--r-- | less/progress-bars.less | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/less/progress-bars.less b/less/progress-bars.less index 3d4e6306f..3ac52a29e 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; } |
