CSS snippet to hide arrows in outline view?

Hi folks,

Was hoping somebody could help me complete this picture with a snippet that hides the arrows in the outline pane.

Thanks so much.

Something like this maybe?

Obsidian_azRiEOY7Cy

.workspace-leaf-content[data-type="outline"] .tree-item-icon {
    opacity: 0; 

    &:hover {
        opacity: 1; }
}

If you don’t want the hover, you can remove the second section.

You’re a star! Thank you so much. This is exactly what I wanted.

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