b01d032d0d
* Enhancement: Updates sidebar to a new design (#2733) * feat: Changes primary navbar to new design (#2598) * feat: updates design for secondary navbar (#2612) * Changes primary nvbar to new design * Updates design for contexual sidebar * Fixes issues with JSON * Remove duplication of notificatons in Navigation * Fixes broken tests * Fixes broken tests * Update app/javascript/dashboard/components/layout/AvailabilityStatus.vue * Update app/javascript/dashboard/components/layout/AvailabilityStatus.vue * Update app/javascript/dashboard/components/layout/SidebarItem.vue Co-authored-by: Sivin Varghese <64252451+iamsivin@users.noreply.github.com> * Update app/javascript/dashboard/components/layout/SidebarItem.vue Co-authored-by: Sivin Varghese <64252451+iamsivin@users.noreply.github.com> * Update app/javascript/dashboard/modules/sidebar/components/Secondary.vue Co-authored-by: Sivin Varghese <64252451+iamsivin@users.noreply.github.com> Co-authored-by: Sivin Varghese <64252451+iamsivin@users.noreply.github.com> * Chore: Update design changes to features * Fixes menu transitions and refactors code * Refactors sidebar routeing logic * lint error fixes * Fixes dropdown menu styles * Fixes secondary new item links * Fixes lint scss issues * fixes linter issues * Fixes broken test cases * Update AvailabilityStatus.spec.js * Review feedbacks * Fixes add modal for label * Add tooltip for primary menu item * Tooltip for notifications * Adds tooltip for primary menu items * Review fixes * Review fixes * Fix merge issues * fixes logo size for login pages * fixes Merge breaks with styles Co-authored-by: Sivin Varghese <64252451+iamsivin@users.noreply.github.com> Co-authored-by: Pranav Raj S <pranav@chatwoot.com>
120 lines
2.2 KiB
SCSS
120 lines
2.2 KiB
SCSS
/* Enter and leave animations can use different */
|
|
/* durations and timing functions. */
|
|
.slide-fade-enter-active {
|
|
transition: all .3s $ease-in-cubic;
|
|
}
|
|
|
|
.slide-fade-leave-active {
|
|
transition: all .3s $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 .25s $ease-out-cubic;
|
|
}
|
|
|
|
.conversations-list-enter,
|
|
.conversations-list-leave-to {
|
|
opacity: 0;
|
|
transform: translateX($space-medium);
|
|
}
|
|
|
|
.menu-list-enter-active,
|
|
.menu-list-leave-active {
|
|
transition: opacity .3s $ease-out-cubic,
|
|
transform .2s $ease-out-cubic;
|
|
}
|
|
|
|
|
|
.menu-list-leave-to {
|
|
opacity: 0;
|
|
position: absolute;
|
|
transform: translateX($space-small);
|
|
}
|
|
|
|
.menu-list-enter {
|
|
opacity: 0;
|
|
transform: translateX(-$space-small);
|
|
}
|
|
|
|
.slide-up-enter-active {
|
|
transition: all .3s $ease-in-cubic;
|
|
}
|
|
|
|
.slide-up-leave-active {
|
|
transition: all .3s $ease-out-cubic;
|
|
}
|
|
|
|
.slide-up-enter,
|
|
.slide-up-leave-to {
|
|
transform: translateY(-$space-medium);
|
|
opacity: 0;
|
|
}
|
|
|
|
.menu-slide-enter-active,
|
|
.menu-slide-leave-active {
|
|
transform: translateY(0);
|
|
transition: transform 0.25s $ease-in-cubic, opacity 0.15s $ease-in-cubic;
|
|
}
|
|
|
|
.menu-slide-enter,
|
|
.menu-slide-leave-to {
|
|
opacity: 0;
|
|
transform: translateY($space-small);
|
|
}
|
|
|
|
|
|
.toast-fade-enter-active {
|
|
transition: all .3s $ease-in-sine;
|
|
}
|
|
|
|
.toast-fade-leave-active {
|
|
transition: all .1s $ease-out-sine;
|
|
}
|
|
|
|
.toast-fade-enter,
|
|
.toast-fade-leave-to {
|
|
opacity: 0;
|
|
transform: translateY(-$space-small);
|
|
}
|
|
|
|
.modal-fade-enter-active {
|
|
transition: all .3s $ease-in-sine;
|
|
}
|
|
|
|
.modal-fade-leave-active {
|
|
transition: all .1s $ease-out-sine;
|
|
}
|
|
|
|
.modal-fade-enter,
|
|
.modal-fade-leave-to {
|
|
opacity: 0;
|
|
}
|
|
|
|
.network-notification-fade-enter-active {
|
|
transition: all .1s $ease-in-sine;
|
|
}
|
|
|
|
.network-notification-fade-leave-active {
|
|
transition: all .1s $ease-out-sine;
|
|
}
|
|
|
|
.network-notification-fade-enter,
|
|
.network-notification-fade-leave-to {
|
|
transform: translateY(-$space-small);
|
|
opacity: 0;
|
|
}
|