Radarr/UI/Content/Bootstrap/component-animations.less

23 lines
306 B
Plaintext
Raw Normal View History

2013-01-17 00:39:42 +00: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;
}
}