mirror of
https://github.com/TriliumNext/Notes.git
synced 2025-09-25 14:31:33 +08:00
Add a fade in animation when the tree view is shown
This commit is contained in:
parent
3c8fbd91d0
commit
4977092776
@ -214,6 +214,13 @@
|
|||||||
* USER INTERFACE
|
* USER INTERFACE
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
@keyframes fade-in {
|
||||||
|
from {
|
||||||
|
opacity: 0;
|
||||||
|
} to {
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Launcher pane
|
* Launcher pane
|
||||||
@ -263,6 +270,7 @@
|
|||||||
|
|
||||||
#left-pane div.tree {
|
#left-pane div.tree {
|
||||||
padding: 0 12px;
|
padding: 0 12px;
|
||||||
|
animation: fade-in 200ms ease-in;
|
||||||
}
|
}
|
||||||
|
|
||||||
#left-pane span.fancytree-node {
|
#left-pane span.fancytree-node {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user