From c865a68e212e6ba35a5049b568f63730ee870a82 Mon Sep 17 00:00:00 2001 From: Chris Rebert Date: Thu, 24 Oct 2013 19:20:08 -0700 Subject: fix WebKit caps in comments --- less/progress-bars.less | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'less/progress-bars.less') diff --git a/less/progress-bars.less b/less/progress-bars.less index 0bb3b5852..d0bb19e02 100644 --- a/less/progress-bars.less +++ b/less/progress-bars.less @@ -6,7 +6,7 @@ // Bar animations // ------------------------- -// Webkit +// WebKit @-webkit-keyframes progress-bar-stripes { from { background-position: 40px 0; } to { background-position: 0 0; } -- cgit v1.2.3 From aff291e1ca998591b6615f6bde3e10e1dae2403b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Zlatan=20Vasovi=C4=87?= Date: Sat, 26 Oct 2013 14:11:59 +0200 Subject: Add .animation() mixin --- less/progress-bars.less | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'less/progress-bars.less') diff --git a/less/progress-bars.less b/less/progress-bars.less index d0bb19e02..507c82dbd 100644 --- a/less/progress-bars.less +++ b/less/progress-bars.less @@ -67,11 +67,7 @@ // Call animation for the active one .progress.active .progress-bar { - -webkit-animation: progress-bar-stripes 2s linear infinite; - -moz-animation: progress-bar-stripes 2s linear infinite; - -ms-animation: progress-bar-stripes 2s linear infinite; - -o-animation: progress-bar-stripes 2s linear infinite; - animation: progress-bar-stripes 2s linear infinite; + .animation(progress-bar-stripes 2s linear infinite); } -- cgit v1.2.3 From c2a6e950d75ece24aa856b0cd7b0f50223c9a7f9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Zlatan=20Vasovi=C4=87?= Date: Wed, 13 Nov 2013 22:32:46 +0100 Subject: Remove unusual keyframes prefixes --- less/progress-bars.less | 12 ------------ 1 file changed, 12 deletions(-) (limited to 'less/progress-bars.less') diff --git a/less/progress-bars.less b/less/progress-bars.less index 507c82dbd..76c87be17 100644 --- a/less/progress-bars.less +++ b/less/progress-bars.less @@ -12,18 +12,6 @@ to { background-position: 0 0; } } -// Firefox -@-moz-keyframes progress-bar-stripes { - from { background-position: 40px 0; } - to { background-position: 0 0; } -} - -// Opera -@-o-keyframes progress-bar-stripes { - from { background-position: 0 0; } - to { background-position: 40px 0; } -} - // Spec and IE10+ @keyframes progress-bar-stripes { from { background-position: 40px 0; } -- cgit v1.2.3