2012-09-01 17:42:07 +01:00
|
|
|
//
|
|
|
|
// Component animations
|
|
|
|
// --------------------------------------------------
|
|
|
|
|
2012-02-06 13:38:26 +00:00
|
|
|
|
|
|
|
.fade {
|
2012-06-04 11:30:38 +01:00
|
|
|
opacity: 0;
|
2012-02-06 13:38:26 +00:00
|
|
|
@include transition(opacity .15s linear);
|
|
|
|
&.in {
|
2012-06-04 11:30:38 +01:00
|
|
|
opacity: 1;
|
2012-02-06 13:38:26 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.collapse {
|
2012-09-01 17:42:07 +01:00
|
|
|
position: relative;
|
2012-02-06 13:38:26 +00:00
|
|
|
height: 0;
|
2012-09-01 17:42:07 +01:00
|
|
|
overflow: hidden;
|
2012-04-25 22:16:32 +01:00
|
|
|
@include transition(height .35s ease);
|
2012-03-13 19:23:53 +00:00
|
|
|
&.in {
|
|
|
|
height: auto;
|
|
|
|
}
|
2012-11-01 08:48:46 -04:00
|
|
|
}
|