Highlight the currently selected node

Can be done with CSS

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

3 Likes