Files
portal/bootstrap/less/component-animations.less
Dobie Wollert 07762668f2 Initial Commit
2012-11-12 00:44:22 -08:00

23 lines
306 B
Plaintext

//
// 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;
}
}