0
0
mirror of https://github.com/twbs/bootstrap.git synced 2024-12-01 13:24:25 +01:00
Bootstrap/less/component-animations.less

20 lines
275 B
Plaintext
Raw Normal View History

// COMPONENT ANIMATIONS
// --------------------
.fade {
.opacity(0);
2012-04-17 01:34:08 +02:00
.transition(opacity .15s linear);
&.in {
.opacity(100);
}
}
.collapse {
position: relative;
height: 0;
overflow: hidden;
2012-04-17 01:34:08 +02:00
.transition(height .35s ease);
&.in {
height: auto;
}
}