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

20 lines
269 B
Plaintext
Raw Normal View History

// COMPONENT ANIMATIONS
// --------------------
.fade {
opacity: 0;
2012-04-16 23:34:08 +00:00
.transition(opacity .15s linear);
&.in {
opacity: 1;
}
}
.collapse {
position:relative;
height: 0;
2012-04-16 23:34:08 +00:00
overflow:hidden;
.transition(height .35s ease);
&.in {
height: auto;
}
}