Skip to content

Commit

Permalink
can't have overflo: visible for "in" which is present during entirity…
Browse files Browse the repository at this point in the history
… of transition.
  • Loading branch information
fat committed Mar 12, 2012
1 parent 7f3a2b3 commit cd89c34
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 3 deletions.
Binary file modified docs/assets/bootstrap.zip
Binary file not shown.
1 change: 0 additions & 1 deletion docs/assets/css/bootstrap.css
Expand Up @@ -1941,7 +1941,6 @@ table .span24 {
}
.collapse.in {
height: auto;
overflow: visible;
}
.close {
float: right;
Expand Down
3 changes: 1 addition & 2 deletions less/component-animations.less
Expand Up @@ -16,6 +16,5 @@
height: 0;
&.in {
height: auto;
overflow: visible;
}
}
}
11 changes: 11 additions & 0 deletions 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)
});

0 comments on commit cd89c34

Please sign in to comment.