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;
|
2012-04-16 19:34:08 -04:00
|
|
|
.transition(opacity .15s linear);
|
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
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.collapse {
|
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;
|
2012-04-16 19:34:08 -04:00
|
|
|
.transition(height .35s ease);
|
2012-03-12 01:43:35 -04:00
|
|
|
&.in {
|
|
|
|
height: auto;
|
|
|
|
}
|
2012-05-20 20:56:57 -04:00
|
|
|
}
|