1
0
Fork 0
mirror of https://github.com/twbs/bootstrap.git synced 2022-11-09 12:25:43 -05:00
twbs--bootstrap/less/component-animations.less

27 lines
417 B
Text
Raw Normal View History

2012-06-29 00:46:45 -04:00
//
// Component animations
// --------------------------------------------------
.fade {
2012-05-20 20:56:57 -04:00
opacity: 0;
transition: opacity .15s linear;
&.in {
2012-05-20 20:56:57 -04:00
opacity: 1;
}
}
.collapse {
display: none;
&.in { display: block; }
tr&.in { display: table-row; }
tbody&.in { display: table-row-group; }
}
.collapsing {
position: relative;
height: 0;
overflow: hidden;
transition: height .35s ease;
2012-05-20 20:56:57 -04:00
}