twbs--bootstrap/less/component-animations.less

30 lines
509 B
Plaintext
Raw Normal View History

2012-06-29 04:46:45 +00:00
//
// 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 {
2012-05-21 00:56:57 +00:00
opacity: 0;
2012-04-16 23:34:08 +00:00
.transition(opacity .15s linear);
&.in {
2012-05-21 00:56:57 +00:00
opacity: 1;
}
}
.collapse {
display: none;
&.in {
display: block;
}
}
.collapsing {
position: relative;
height: 0;
overflow: hidden;
2012-04-16 23:34:08 +00:00
.transition(height .35s ease);
2012-05-21 00:56:57 +00:00
}