]> git.ipfire.org Git - thirdparty/bootstrap.git/commitdiff
Invert progress-bar-stripes direction 2628/head
authorMarcel Jackwerth <marcel@northdocks.com>
Thu, 15 Mar 2012 17:11:17 +0000 (18:11 +0100)
committerMarcel Jackwerth <marcel@northdocks.com>
Thu, 15 Mar 2012 17:11:17 +0000 (18:11 +0100)
less/progress-bars.less

index 5979a3691512e3e3ad51a4226057478ac87a6f24..3da1f6f17623a7ef3cf26ecaba213d1cf181ec24 100644 (file)
@@ -7,26 +7,26 @@
 
 // Webkit
 @-webkit-keyframes progress-bar-stripes {
-  from  { background-position: 0 0; }
-  to    { background-position: 40px 0; }
+  from  { background-position: 40px 0; }
+  to    { background-position: 0 0; }
 }
 
 // Firefox
 @-moz-keyframes progress-bar-stripes {
-  from  { background-position: 0 0; }
-  to    { background-position: 40px 0; }
+  from  { background-position: 40px 0; }
+  to    { background-position: 0 0; }
 }
 
 // IE9
 @-ms-keyframes progress-bar-stripes {
-  from  { background-position: 0 0; }
-  to    { background-position: 40px 0; }
+  from  { background-position: 40px 0; }
+  to    { background-position: 0 0; }
 }
 
 // Spec
 @keyframes progress-bar-stripes {
-  from  { background-position: 0 0; }
-  to    { background-position: 40px 0; }
+  from  { background-position: 40px 0; }
+  to    { background-position: 0 0; }
 }