Files
Umbraco-CMS/src/Umbraco.Web.UI.Client/lib/bootstrap/less/component-animations.less
2013-08-12 15:17:34 +02:00

23 lines
328 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;
}
}