bootstrap/less/component-animations.less

23 lines
306 B
Plaintext
Raw Normal View History

2012-06-29 12:46:45 +08:00
//
// Component animations
// --------------------------------------------------
.fade {
2012-05-21 08:56:57 +08:00
opacity: 0;
2012-04-17 07:34:08 +08:00
.transition(opacity .15s linear);
&.in {
2012-05-21 08:56:57 +08:00
opacity: 1;
}
}
.collapse {
position: relative;
height: 0;
overflow: hidden;
2012-04-17 07:34:08 +08:00
.transition(height .35s ease);
&.in {
height: auto;
}
2012-05-21 08:56:57 +08:00
}