diff options
| author | Jacob Thornton <[email protected]> | 2012-03-12 13:31:38 -0700 |
|---|---|---|
| committer | Jacob Thornton <[email protected]> | 2012-03-12 13:31:38 -0700 |
| commit | cd89c34d99f839be73e9179385d4da29de026431 (patch) | |
| tree | 4910ff7864df49ec779ec46267378a79c442473b | |
| parent | 7f3a2b38134916e84dc7c7ddc149b02d6e56d971 (diff) | |
| download | bootstrap-cd89c34d99f839be73e9179385d4da29de026431.tar.xz bootstrap-cd89c34d99f839be73e9179385d4da29de026431.zip | |
can't have overflo: visible for "in" which is present during entirity of transition.
| -rw-r--r-- | docs/assets/bootstrap.zip | bin | 55577 -> 55576 bytes | |||
| -rw-r--r-- | docs/assets/css/bootstrap.css | 1 | ||||
| -rw-r--r-- | less/component-animations.less | 3 | ||||
| -rw-r--r-- | less/test.js | 11 |
4 files changed, 12 insertions, 3 deletions
diff --git a/docs/assets/bootstrap.zip b/docs/assets/bootstrap.zip Binary files differindex f3c7981e0..d36eb3885 100644 --- a/docs/assets/bootstrap.zip +++ b/docs/assets/bootstrap.zip diff --git a/docs/assets/css/bootstrap.css b/docs/assets/css/bootstrap.css index d87bd2f8e..102fdfaa3 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 edfaef301..4a6368cf9 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 000000000..c815d2cc3 --- /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 |
