Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/less
diff options
context:
space:
mode:
authorJacob Thornton <jacobthornton@gmail.com>2012-03-13 00:31:38 +0400
committerJacob Thornton <jacobthornton@gmail.com>2012-03-13 00:31:38 +0400
commitcd89c34d99f839be73e9179385d4da29de026431 (patch)
tree4910ff7864df49ec779ec46267378a79c442473b /less
parent7f3a2b38134916e84dc7c7ddc149b02d6e56d971 (diff)
can't have overflo: visible for "in" which is present during entirity of transition.
Diffstat (limited to 'less')
-rw-r--r--less/component-animations.less3
-rw-r--r--less/test.js11
2 files changed, 12 insertions, 2 deletions
diff --git a/less/component-animations.less b/less/component-animations.less
index edfaef301f..4a6368cf95 100644
--- a/less/component-animations.less
+++ b/less/component-animations.less
@@ -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
index 0000000000..c815d2cc3f
--- /dev/null
+++ b/less/test.js
@@ -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