Add a fade in animation when the tree view is shown

This commit is contained in:
Adorian Doran 2024-11-27 00:54:29 +02:00
parent 3c8fbd91d0
commit 4977092776

View File

@ -214,6 +214,13 @@
* USER INTERFACE
*/
@keyframes fade-in {
from {
opacity: 0;
} to {
opacity: 1;
}
}
/*
* Launcher pane
@ -263,6 +270,7 @@
#left-pane div.tree {
padding: 0 12px;
animation: fade-in 200ms ease-in;
}
#left-pane span.fancytree-node {