symposion_app/symposion_project/static/bootstrap/less/component-animations.less

23 lines
306 B
Text
Raw Normal View History

//
// Component animations
// --------------------------------------------------
2012-07-19 06:52:11 +00:00
.fade {
opacity: 0;
.transition(opacity .15s linear);
&.in {
opacity: 1;
}
}
.collapse {
position: relative;
height: 0;
overflow: hidden;
.transition(height .35s ease);
&.in {
height: auto;
}
}