Files
awesome-obsidian/code/css-snippets/custom-icons-for-specific-folders.css
2021-08-24 23:29:58 -04:00

29 lines
1.2 KiB
CSS
Raw Blame History

This file contains invisible Unicode characters
This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
/* Custom icons for specific folders */
/* https://forum.obsidian.md/t/add-emojis-to-folder-titles-in-explorer-without-renaming-folders/22702 */
div[data-path="_Inbox"] .nav-folder-title-content::before
{
content: "📥";
}
div[data-path="Attachments"] .nav-folder-title-content::before
{
content: "📋";
}
div[data-path="Bible Resources"] .nav-folder-title-content::before
{
content: "⚔️";
}
div[data-path="Notes"] .nav-folder-title-content::before
{
content: "📝";
}
div[data-path="Notes/Daily"] .nav-folder-title-content::before
{
content: "📆";
}