mirror of
https://github.com/lingble/chatwoot.git
synced 2025-10-30 02:32:29 +00:00
Fixes https://github.com/chatwoot/chatwoot/issues/8436 Fixes https://github.com/chatwoot/chatwoot/issues/9767 Fixes https://github.com/chatwoot/chatwoot/issues/10156 Fixes https://github.com/chatwoot/chatwoot/issues/6031 Fixes https://github.com/chatwoot/chatwoot/issues/5696 Fixes https://github.com/chatwoot/chatwoot/issues/9250 Fixes https://github.com/chatwoot/chatwoot/issues/9762 --------- Co-authored-by: Pranav <pranavrajs@gmail.com> Co-authored-by: Sivin Varghese <64252451+iamsivin@users.noreply.github.com>
102 lines
1.8 KiB
SCSS
102 lines
1.8 KiB
SCSS
.slide-fade-enter-active {
|
|
transition: all 0.3s var(--ease-in-cubic);
|
|
}
|
|
|
|
.slide-fade-leave-active {
|
|
transition: all 0.3s var(--ease-out-cubic);
|
|
}
|
|
|
|
.slide-fade-enter,
|
|
.slide-fade-leave-to {
|
|
opacity: 0;
|
|
transform: translateX(10px);
|
|
}
|
|
|
|
.slide-fade-enter {
|
|
transform: translateX($space-micro);
|
|
}
|
|
|
|
.slide-fade-leave-to {
|
|
transform: translateX($space-medium);
|
|
}
|
|
|
|
.conversations-list-enter-active,
|
|
.conversations-list-leave-active {
|
|
transition: all 0.25s var(--ease-out-cubic);
|
|
}
|
|
|
|
.conversations-list-enter,
|
|
.conversations-list-leave-to {
|
|
opacity: 0;
|
|
transform: translateX($space-medium);
|
|
}
|
|
|
|
.slide-up-enter-active {
|
|
transition: all 0.3s var(--ease-in-cubic);
|
|
}
|
|
|
|
.slide-up-leave-active {
|
|
transition: all 0.3s var(--ease-out-cubic);
|
|
}
|
|
|
|
.slide-up-enter,
|
|
.slide-up-leave-to {
|
|
opacity: 0;
|
|
transform: translateY(-$space-medium);
|
|
}
|
|
|
|
.menu-slide-enter-active,
|
|
.menu-slide-leave-active {
|
|
transform: translateY(0);
|
|
transition:
|
|
transform 0.25s var(--ease-in-cubic),
|
|
opacity 0.15s var(--ease-in-cubic);
|
|
}
|
|
|
|
.menu-slide-enter,
|
|
.menu-slide-leave-to {
|
|
opacity: 0;
|
|
transform: translateY($space-small);
|
|
}
|
|
|
|
.toast-fade-enter-active {
|
|
transition: all 0.3s var(--ease-in-sine);
|
|
}
|
|
|
|
.toast-fade-leave-active {
|
|
transition: all 0.1s var(--ease-out-sine);
|
|
}
|
|
|
|
.toast-fade-enter,
|
|
.toast-fade-leave-to {
|
|
opacity: 0;
|
|
transform: translateY(-$space-small);
|
|
}
|
|
|
|
.modal-fade-enter-active {
|
|
transition: all 0.3s var(--ease-in-sine);
|
|
}
|
|
|
|
.modal-fade-leave-active {
|
|
transition: all 0.1s var(--ease-out-sine);
|
|
}
|
|
|
|
.modal-fade-enter,
|
|
.modal-fade-leave-to {
|
|
opacity: 0;
|
|
}
|
|
|
|
.network-notification-fade-enter-active {
|
|
transition: all 0.1s var(--ease-in-sine);
|
|
}
|
|
|
|
.network-notification-fade-leave-active {
|
|
transition: all 0.1s var(--ease-out-sine);
|
|
}
|
|
|
|
.network-notification-fade-enter,
|
|
.network-notification-fade-leave-to {
|
|
opacity: 0;
|
|
transform: translateY(-$space-small);
|
|
}
|