]> git.ipfire.org Git - thirdparty/bootstrap.git/commitdiff
Do not use filters in fade animations 3552/head
authorTomás Arribas <tomas.arribas@buenostalleres.com>
Mon, 21 May 2012 00:56:57 +0000 (02:56 +0200)
committerTomás Arribas <tomas.arribas@buenostalleres.com>
Mon, 21 May 2012 00:56:57 +0000 (02:56 +0200)
less/component-animations.less

index da1f2e5350587c69947bb93f789fde390cfc1bc7..1e1e78b851eeb512e3d7451472500a0e9114108a 100644 (file)
@@ -2,10 +2,10 @@
 // --------------------
 
 .fade {
-  .opacity(0);
+  opacity: 0;
   .transition(opacity .15s linear);
   &.in {
-    .opacity(100);
+    opacity: 1;
   }
 }
 
@@ -17,4 +17,4 @@
   &.in {
     height: auto;
   }
-}
\ No newline at end of file
+}