aboutsummaryrefslogtreecommitdiff
path: root/less
diff options
context:
space:
mode:
authorfat <[email protected]>2013-07-26 20:34:39 -0700
committerfat <[email protected]>2013-07-26 20:34:39 -0700
commite2d4cf5f683e13440c98d36b6a38d1b501336adc (patch)
tree84ba748090a5196fb58a728182fccfd14bc8628c /less
parent178d8e98deff6d3f69b7a8f89fc345d65b563670 (diff)
downloadbootstrap-e2d4cf5f683e13440c98d36b6a38d1b501336adc.tar.xz
bootstrap-e2d4cf5f683e13440c98d36b6a38d1b501336adc.zip
change how collapse works - collapse, collapsing, and in
Diffstat (limited to 'less')
-rw-r--r--less/component-animations.less10
1 files changed, 6 insertions, 4 deletions
diff --git a/less/component-animations.less b/less/component-animations.less
index 8393aa44c..1efe45e2c 100644
--- a/less/component-animations.less
+++ b/less/component-animations.less
@@ -16,12 +16,14 @@
}
.collapse {
+ display: none;
+ &.in {
+ display: block;
+ }
+}
+.collapsing {
position: relative;
height: 0;
overflow: hidden;
.transition(height .35s ease);
-
- &.in {
- height: auto;
- }
}