]> git.ipfire.org Git - thirdparty/bootstrap.git/commitdiff
can't have overflo: visible for "in" which is present during entirity of transition.
authorJacob Thornton <jacobthornton@gmail.com>
Mon, 12 Mar 2012 20:31:38 +0000 (13:31 -0700)
committerJacob Thornton <jacobthornton@gmail.com>
Mon, 12 Mar 2012 20:31:38 +0000 (13:31 -0700)
docs/assets/bootstrap.zip
docs/assets/css/bootstrap.css
less/component-animations.less
less/test.js [new file with mode: 0644]

index f3c7981e0805074a90dbbcc9d17fa5fce9aafb3f..d36eb3885ebc4ed6971979bd2442b81330f66bd0 100644 (file)
Binary files a/docs/assets/bootstrap.zip and b/docs/assets/bootstrap.zip differ
index d87bd2f8ef8cd0dce0780bb218bd8546eaf6df9e..102fdfaa3c5f9678fa1e94c6f6f88c582531196a 100644 (file)
@@ -1941,7 +1941,6 @@ table .span24 {
 }
 .collapse.in {
   height: auto;
-  overflow: visible;
 }
 .close {
   float: right;
index edfaef301f8c8a341a39854c59e8fadcc9c793eb..4a6368cf9565577790df01581c71894ca6702a2f 100644 (file)
@@ -16,6 +16,5 @@
   height: 0;
   &.in {
     height: auto;
-    overflow: visible;
   }
-}
+}
\ No newline at end of file
diff --git a/less/test.js b/less/test.js
new file mode 100644 (file)
index 0000000..c815d2c
--- /dev/null
@@ -0,0 +1,11 @@
+var util = require('util'),
+    exec = require('child_process').exec,
+    child;
+
+var total = 0;
+var start = new(Date);
+child = exec('lessc bootstrap.scss', function (error, stdout, stderr) {
+       var end = new(Date);
+       total = end - start;
+       console.log(total)
+});
\ No newline at end of file