diff --git a/docs/assets/bootstrap.zip b/docs/assets/bootstrap.zip index f3c7981e0805074a90dbbcc9d17fa5fce9aafb3f..d36eb3885ebc4ed6971979bd2442b81330f66bd0 100644 Binary files a/docs/assets/bootstrap.zip and b/docs/assets/bootstrap.zip differ diff --git a/docs/assets/css/bootstrap.css b/docs/assets/css/bootstrap.css index d87bd2f8ef8cd0dce0780bb218bd8546eaf6df9e..102fdfaa3c5f9678fa1e94c6f6f88c582531196a 100644 --- a/docs/assets/css/bootstrap.css +++ b/docs/assets/css/bootstrap.css @@ -1941,7 +1941,6 @@ table .span24 { } .collapse.in { height: auto; - overflow: visible; } .close { float: right; diff --git a/less/component-animations.less b/less/component-animations.less index edfaef301f8c8a341a39854c59e8fadcc9c793eb..4a6368cf9565577790df01581c71894ca6702a2f 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 0000000000000000000000000000000000000000..c815d2cc3fec6a65b94cde2910354ed587adf1fd --- /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