Add transition

This commit is contained in:
Adorian Doran 2024-11-26 23:14:38 +02:00
parent f2ebb3ccab
commit f2cd34ab6a

View File

@ -259,6 +259,14 @@
color: var(--left-pane-item-selected-color) !important;
}
@keyframes left-pane-item-select {
from {
opacity: 0;
} to {
opacity: 1;
}
}
#left-pane span.fancytree-node.fancytree-active::before {
position: absolute;
content: "";
@ -269,6 +277,7 @@
background: var(--left-pane-item-selected-background) !important;
box-shadow: var(--left-pane-item-selected-shadow);
border-radius: 6px;
animation: left-pane-item-select 200ms ease-out;
}
#left-pane .fancytree-custom-icon {