mirror of
https://github.com/twbs/bootstrap.git
synced 2025-08-12 08:34:08 +02:00
can't have overflo: visible for "in" which is present during entirity of transition.
This commit is contained in:
Binary file not shown.
1
docs/assets/css/bootstrap.css
vendored
1
docs/assets/css/bootstrap.css
vendored
@@ -1941,7 +1941,6 @@ table .span24 {
|
|||||||
}
|
}
|
||||||
.collapse.in {
|
.collapse.in {
|
||||||
height: auto;
|
height: auto;
|
||||||
overflow: visible;
|
|
||||||
}
|
}
|
||||||
.close {
|
.close {
|
||||||
float: right;
|
float: right;
|
||||||
|
@@ -16,6 +16,5 @@
|
|||||||
height: 0;
|
height: 0;
|
||||||
&.in {
|
&.in {
|
||||||
height: auto;
|
height: auto;
|
||||||
overflow: visible;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
11
less/test.js
Normal file
11
less/test.js
Normal 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)
|
||||||
|
});
|
Reference in New Issue
Block a user