2012-01-05 19:01:42 +01:00
|
|
|
.fade {
|
2012-05-21 02:56:57 +02:00
|
|
|
opacity: 0;
|
2016-11-26 07:06:40 +01:00
|
|
|
|
|
|
|
@if $enable-transitions {
|
|
|
|
transition: opacity .15s linear;
|
|
|
|
}
|
2014-12-02 23:02:35 +01:00
|
|
|
|
2016-10-27 01:24:46 +02:00
|
|
|
&.active {
|
2012-05-21 02:56:57 +02:00
|
|
|
opacity: 1;
|
2012-01-05 19:01:42 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-05-24 06:06:02 +02:00
|
|
|
.collapse {
|
2013-07-27 05:34:39 +02:00
|
|
|
display: none;
|
2016-10-27 01:24:46 +02:00
|
|
|
&.active {
|
2014-12-02 23:02:35 +01:00
|
|
|
display: block;
|
|
|
|
}
|
2016-10-03 06:23:04 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
tr {
|
2016-10-27 01:24:46 +02:00
|
|
|
&.collapse.active {
|
2016-10-03 06:23:04 +02:00
|
|
|
display: table-row;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
tbody {
|
2016-10-27 01:24:46 +02:00
|
|
|
&.collapse.active {
|
2016-10-03 06:23:04 +02:00
|
|
|
display: table-row-group;
|
|
|
|
}
|
2013-07-27 05:34:39 +02:00
|
|
|
}
|
2014-03-04 06:39:53 +01:00
|
|
|
|
2013-07-27 05:34:39 +02:00
|
|
|
.collapsing {
|
2012-04-24 15:39:14 +02:00
|
|
|
position: relative;
|
2012-01-05 19:01:42 +01:00
|
|
|
height: 0;
|
2012-04-24 15:39:14 +02:00
|
|
|
overflow: hidden;
|
2016-11-26 07:06:40 +01:00
|
|
|
|
|
|
|
@if $enable-transitions {
|
|
|
|
transition-timing-function: ease;
|
|
|
|
transition-duration: .35s;
|
|
|
|
transition-property: height;
|
|
|
|
}
|
2012-05-21 02:56:57 +02:00
|
|
|
}
|