diff options
| author | fat <[email protected]> | 2013-07-26 20:34:39 -0700 |
|---|---|---|
| committer | fat <[email protected]> | 2013-07-26 20:34:39 -0700 |
| commit | e2d4cf5f683e13440c98d36b6a38d1b501336adc (patch) | |
| tree | 84ba748090a5196fb58a728182fccfd14bc8628c /dist/css/bootstrap.css | |
| parent | 178d8e98deff6d3f69b7a8f89fc345d65b563670 (diff) | |
| download | bootstrap-e2d4cf5f683e13440c98d36b6a38d1b501336adc.tar.xz bootstrap-e2d4cf5f683e13440c98d36b6a38d1b501336adc.zip | |
change how collapse works - collapse, collapsing, and in
Diffstat (limited to 'dist/css/bootstrap.css')
| -rw-r--r-- | dist/css/bootstrap.css | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/dist/css/bootstrap.css b/dist/css/bootstrap.css index 79ea5445a..5c278cd02 100644 --- a/dist/css/bootstrap.css +++ b/dist/css/bootstrap.css @@ -2016,6 +2016,14 @@ input[type="button"].btn-block { } .collapse { + display: none; +} + +.collapse.in { + display: block; +} + +.collapsing { position: relative; height: 0; overflow: hidden; @@ -2023,10 +2031,6 @@ input[type="button"].btn-block { transition: height 0.35s ease; } -.collapse.in { - height: auto; -} - .caret { display: inline-block; width: 0; |
