2014-02-16 12:19:40 +01:00
|
|
|
//
|
|
|
|
// Component animations
|
|
|
|
// --------------------------------------------------
|
|
|
|
|
|
|
|
// Heads up!
|
|
|
|
//
|
|
|
|
// We don't use the `.opacity()` mixin here since it causes a bug with text
|
2014-07-12 12:31:57 +02:00
|
|
|
// fields in IE7-8. Source: https://github.com/twbs/bootstrap/pull/3552.
|
2014-02-16 12:19:40 +01:00
|
|
|
|
|
|
|
.fade {
|
|
|
|
opacity: 0;
|
|
|
|
.transition(opacity .15s linear);
|
|
|
|
&.in {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.collapse {
|
|
|
|
display: none;
|
2014-07-12 12:31:57 +02:00
|
|
|
|
|
|
|
&.in { display: block; }
|
|
|
|
tr&.in { display: table-row; }
|
|
|
|
tbody&.in { display: table-row-group; }
|
2014-02-16 12:19:40 +01:00
|
|
|
}
|
2014-07-12 12:31:57 +02:00
|
|
|
|
2014-02-16 12:19:40 +01:00
|
|
|
.collapsing {
|
|
|
|
position: relative;
|
|
|
|
height: 0;
|
|
|
|
overflow: hidden;
|
2015-07-21 18:45:40 +02:00
|
|
|
.transition-property(~"height, visibility");
|
|
|
|
.transition-duration(.35s);
|
|
|
|
.transition-timing-function(ease);
|
2014-02-16 12:19:40 +01:00
|
|
|
}
|