How to disable the highlight when hovering over folder/note?

I want to have a note selection background visible only for the opened note.

When I just hover the cursor over the folders/notes I don’t want to see the highlight (changed background color + changed font name color) in File Explorer

You can do it with this CSS snippet. I don’t know if it works for all themes, but at least it worked for the default one and Minimal:

.workspace-leaf-content[data-type="file-explorer"] {
    --nav-item-background-hover: var(--bg2);
}

See also:

Thank you

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.