2012-06-29 06:46:45 +02:00
|
|
|
//
|
|
|
|
// Component animations
|
|
|
|
// --------------------------------------------------
|
|
|
|
|
2012-01-05 19:01:42 +01:00
|
|
|
|
|
|
|
.fade {
|
2012-05-21 02:56:57 +02:00
|
|
|
opacity: 0;
|
2012-04-17 01:34:08 +02:00
|
|
|
.transition(opacity .15s linear);
|
2012-01-05 19:01:42 +01:00
|
|
|
&.in {
|
2012-05-21 02:56:57 +02:00
|
|
|
opacity: 1;
|
2012-01-05 19:01:42 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-01-16 02:55:14 +01:00
|
|
|
/*.collapse {
|
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;
|
2012-04-17 01:34:08 +02:00
|
|
|
.transition(height .35s ease);
|
2012-03-12 06:43:35 +01:00
|
|
|
&.in {
|
|
|
|
height: auto;
|
|
|
|
}
|
2013-01-16 02:55:14 +01:00
|
|
|
}*/
|
|
|
|
|
|
|
|
.collapse {
|
|
|
|
position: relative;
|
|
|
|
height: 0;
|
|
|
|
overflow: hidden;
|
|
|
|
.transition(height .35s ease);
|
|
|
|
}
|
|
|
|
.collapse.in {
|
|
|
|
height: auto;
|
2012-05-21 02:56:57 +02:00
|
|
|
}
|