1
0
Fork 0
mirror of https://github.com/twbs/bootstrap.git synced 2022-11-09 12:25:43 -05:00

can't have overflo: visible for "in" which is present during entirity of transition.

This commit is contained in:
Jacob Thornton 2012-03-12 13:31:38 -07:00
parent 7f3a2b3813
commit cd89c34d99
4 changed files with 12 additions and 3 deletions

Binary file not shown.

View file

@ -1941,7 +1941,6 @@ table .span24 {
}
.collapse.in {
height: auto;
overflow: visible;
}
.close {
float: right;

View file

@ -16,6 +16,5 @@
height: 0;
&.in {
height: auto;
overflow: visible;
}
}
}

11
less/test.js Normal file
View file

@ -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)
});