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

20 lines
275 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(100);
}
}
.collapse {
position: relative;
height: 0;
overflow: hidden;
2012-04-16 23:34:08 +00:00
.transition(height .35s ease);
&.in {
height: auto;
}
}