Fork-Awesome/src/3.2.1/assets/less/bootstrap-2.3.2/component-animations.less

23 lines
306 B
Plaintext
Raw Normal View History

2013-10-15 23:47:51 +02:00
//
// Component animations
// --------------------------------------------------
.fade {
opacity: 0;
.transition(opacity .15s linear);
&.in {
opacity: 1;
}
}
.collapse {
position: relative;
height: 0;
overflow: hidden;
.transition(height .35s ease);
&.in {
height: auto;
}
}