2012-06-29 00:46:45 -04:00
|
|
|
//
|
|
|
|
// Component animations
|
|
|
|
// --------------------------------------------------
|
|
|
|
|
2012-01-05 13:01:42 -05:00
|
|
|
.fade {
|
2012-05-20 20:56:57 -04:00
|
|
|
opacity: 0;
|
2014-07-08 05:04:48 -04:00
|
|
|
transition: opacity .15s linear;
|
2014-12-02 17:02:35 -05:00
|
|
|
|
2012-01-05 13:01:42 -05:00
|
|
|
&.in {
|
2012-05-20 20:56:57 -04:00
|
|
|
opacity: 1;
|
2012-01-05 13:01:42 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-05-24 00:06:02 -04:00
|
|
|
.collapse {
|
2013-07-26 23:34:39 -04:00
|
|
|
display: none;
|
2014-03-04 00:39:53 -05:00
|
|
|
|
2014-12-02 17:02:35 -05:00
|
|
|
&.in {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
// tr&.in { display: table-row; }
|
|
|
|
// tbody&.in { display: table-row-group; }
|
2013-07-26 23:34:39 -04:00
|
|
|
}
|
2014-03-04 00:39:53 -05:00
|
|
|
|
2013-07-26 23:34:39 -04:00
|
|
|
.collapsing {
|
2012-04-24 09:39:14 -04:00
|
|
|
position: relative;
|
2012-01-05 13:01:42 -05:00
|
|
|
height: 0;
|
2012-04-24 09:39:14 -04:00
|
|
|
overflow: hidden;
|
2014-10-27 01:31:59 -04:00
|
|
|
transition-timing-function: ease;
|
2014-12-11 15:05:29 -05:00
|
|
|
transition-duration: .35s;
|
2015-03-29 03:12:19 -04:00
|
|
|
transition-property: height;
|
2012-05-20 20:56:57 -04:00
|
|
|
}
|