Highlight the currently selected node

Many IDEs have this feature to help the user visually find the currently selected line. The benefit would be the same in WorkFlowy but especially beneficial when viewing a long todo list — when the current focus item is selected it would be visually prominent.

3 Likes

Can be done with CSS

.content:focus {
background-color: rgba(255, 255, 255, 0.05);
border-radius: 5px;
}

3 Likes