
Moved the tests to the horizon portion since they test core functionality. This also required moving some of the templates, etc. that belong in horizon to their proper homes. Change-Id: I7d9758845b81e4b8bcf1ffaaff4f6e237b4fe9f8
19 lines
264 B
Plaintext
19 lines
264 B
Plaintext
// COMPONENT ANIMATIONS
|
|
// --------------------
|
|
|
|
.fade {
|
|
.transition(opacity .15s linear);
|
|
opacity: 0;
|
|
&.in {
|
|
opacity: 1;
|
|
}
|
|
}
|
|
|
|
.collapse {
|
|
.transition(height .35s ease);
|
|
position:relative;
|
|
overflow:hidden;
|
|
height: 0;
|
|
&.in { height: auto; }
|
|
}
|