Hi,
Does anybody know the CSS snippet to hide the small grey file icons present on the left of bookmarked items in the bookmark tab?
Thanks a lot!
Hi,
Does anybody know the CSS snippet to hide the small grey file icons present on the left of bookmarked items in the bookmark tab?
Thanks a lot!
I think they mean the icons on the left here:
If so, try this to start:
.workspace-leaf-content[data-type="bookmarks"] .tree-item-icon .svg-icon.lucide-file {
display: none;
}
https://help.obsidian.md/Extending+Obsidian/CSS+snippets if needed.
This worked! Thank you so much!