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

23 lines
306 B
Plaintext
Raw Normal View History

2013-01-02 00:40:00 -05:00
//
// Component animations
// --------------------------------------------------
2012-06-04 15:33:52 -04:00
.fade {
2013-01-02 00:40:00 -05:00
opacity: 0;
2012-06-04 15:33:52 -04:00
.transition(opacity .15s linear);
&.in {
2013-01-02 00:40:00 -05:00
opacity: 1;
2012-06-04 15:33:52 -04:00
}
}
.collapse {
position: relative;
height: 0;
overflow: hidden;
.transition(height .35s ease);
&.in {
height: auto;
}
2013-01-02 00:40:00 -05:00
}