mirror of
https://github.com/salesagility/SuiteCRM.git
synced 2024-11-22 16:02:36 +00:00
19 lines
264 B
Plaintext
Executable File
19 lines
264 B
Plaintext
Executable File
// 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; }
|
|
}
|