mirror of
https://github.com/twbs/bootstrap.git
synced 2024-11-30 12:24:19 +01:00
27 lines
417 B
Plaintext
27 lines
417 B
Plaintext
//
|
|
// Component animations
|
|
// --------------------------------------------------
|
|
|
|
.fade {
|
|
opacity: 0;
|
|
transition: opacity .15s linear;
|
|
&.in {
|
|
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;
|
|
}
|