mirror of
https://github.com/twbs/bootstrap.git
synced 2022-11-09 12:25:43 -05:00
19 lines
264 B
Text
19 lines
264 B
Text
|
// COMPONENT ANIMATIONS
|
||
|
// --------------------
|
||
|
|
||
|
.fade {
|
||
|
.transition(opacity .15s linear);
|
||
|
opacity: 0;
|
||
|
&.in {
|
||
|
opacity: 1;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.collapse {
|
||
|
.transition(height .35s ease);
|
||
|
position:relative;
|
||
|
overflow:hidden;
|
||
|
height: 0;
|
||
|
&.in { height: auto; }
|
||
|
}
|