2012-06-28 21:46:45 -07:00
|
|
|
//
|
|
|
|
// Component animations
|
|
|
|
// --------------------------------------------------
|
|
|
|
|
2012-01-05 10:01:42 -08:00
|
|
|
|
|
|
|
.fade {
|
2012-05-21 02:56:57 +02:00
|
|
|
opacity: 0;
|
2012-04-16 16:34:08 -07:00
|
|
|
.transition(opacity .15s linear);
|
2012-01-05 10:01:42 -08:00
|
|
|
&.in {
|
2012-05-21 02:56:57 +02:00
|
|
|
opacity: 1;
|
2012-01-05 10:01:42 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.collapse {
|
2012-04-24 06:39:14 -07:00
|
|
|
position: relative;
|
2012-01-05 10:01:42 -08:00
|
|
|
height: 0;
|
2012-04-24 06:39:14 -07:00
|
|
|
overflow: hidden;
|
2012-04-16 16:34:08 -07:00
|
|
|
.transition(height .35s ease);
|
2012-03-11 22:43:35 -07:00
|
|
|
&.in {
|
|
|
|
height: auto;
|
|
|
|
}
|
2012-05-21 02:56:57 +02:00
|
|
|
}
|