Fork-Awesome/assets/less/twbs-2.3.1/component-animations.less

23 lines
306 B
Plaintext
Raw Normal View History

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