twbs--bootstrap/less/_animation.less

27 lines
417 B
Plaintext
Raw Normal View History

2012-06-29 04:46:45 +00:00
//
// Component animations
// --------------------------------------------------
.fade {
2012-05-21 00:56:57 +00:00
opacity: 0;
transition: opacity .15s linear;
&.in {
2012-05-21 00:56:57 +00: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-21 00:56:57 +00:00
}