summaryrefslogtreecommitdiffstats
path: root/css/bootstrap/component-animations.less
diff options
context:
space:
mode:
Diffstat (limited to 'css/bootstrap/component-animations.less')
-rw-r--r--css/bootstrap/component-animations.less13
1 files changed, 10 insertions, 3 deletions
diff --git a/css/bootstrap/component-animations.less b/css/bootstrap/component-animations.less
index d614263..1efe45e 100644
--- a/css/bootstrap/component-animations.less
+++ b/css/bootstrap/component-animations.less
@@ -2,6 +2,10 @@
// Component animations
// --------------------------------------------------
+// Heads up!
+//
+// We don't use the `.opacity()` mixin here since it causes a bug with text
+// fields in IE7-8. Source: https://github.com/twitter/bootstrap/pull/3552.
.fade {
opacity: 0;
@@ -12,11 +16,14 @@
}
.collapse {
+ display: none;
+ &.in {
+ display: block;
+ }
+}
+.collapsing {
position: relative;
height: 0;
overflow: hidden;
.transition(height .35s ease);
- &.in {
- height: auto;
- }
}