You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
Obsidian by default doesn't offer much customization for Properties outside of name, and the icons are determined solely by data type
Describe the solution you'd like
Ideally, in Properties view, right-clicking a custom Property would let you choose a custom icon to accompany it, and that icon will replace the default icon based on its type (e.g. if you have a List property, instead of the List icon, you could change it to a different one)
Describe alternatives you've considered
I have tried using a CSS snippet to override the icons, but this only works in the Properties editor that shows at the top of a note, not in the sidebar (CSS selectors can't filter by element content, and that's the only way the property names are exposed)
Additional context
Results of aforementioned CSS snippet:
(it's a rather messy snippet, using SVG inlining to replace the icon, and I don't think it would hold up at scale; I mostly offer this as an example use case)
The text was updated successfully, but these errors were encountered:
I just opened a PR (#353) which makes it possible to associate file properties with specific icons using custom rules. So the solution is a little different from what you proposed, rather than right-clicking a property, you would go to the Iconize plugin settings and add a custom rule.
For example, if you wanted a particular icon for all files that have a characters property you would simply write:
Oh, I was actually thinking about properties themselves having custom icons, similar to how the tags property has a dedicated icon 😅 Sorry about any confusion there
Is your feature request related to a problem? Please describe.
Obsidian by default doesn't offer much customization for Properties outside of name, and the icons are determined solely by data type
Describe the solution you'd like
Ideally, in Properties view, right-clicking a custom Property would let you choose a custom icon to accompany it, and that icon will replace the default icon based on its type (e.g. if you have a List property, instead of the List icon, you could change it to a different one)
Describe alternatives you've considered
I have tried using a CSS snippet to override the icons, but this only works in the Properties editor that shows at the top of a note, not in the sidebar (CSS selectors can't filter by element content, and that's the only way the property names are exposed)
Additional context
Results of aforementioned CSS snippet:
(it's a rather messy snippet, using SVG inlining to replace the icon, and I don't think it would hold up at scale; I mostly offer this as an example use case)
The text was updated successfully, but these errors were encountered: