0
0
mirror of https://github.com/twbs/bootstrap.git synced 2024-11-29 11:24:18 +01:00
Bootstrap/less/component-animations.less

33 lines
446 B
Plaintext
Raw Normal View History

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