This a feature some âDistraction-free writingâ apps have.
The idea is you can fullscreen dynalist, and think about one item at a time, with zero distraction.
- Everything looks normal when mouse isnât hovering over a node
- If mouse is over a node, all other nodes are invisible
- You can still work with the keyboard only, and everything visible, by moving the mouse off to the side
.Node-children:hover .Node-self {
opacity: 0;
}
.Node-children:hover .Node-self:hover {
opacity: 1;
}