Explain the problem as you see it
There's no way to make an attractive separator node natively. I currently do this with CSS, which works quite well. But it'd be good to have it natively for when I share my workspace with other folks.
Here's the CSS —
/* SPECIAL SEPERATOR #--- SUPERTAG */
[data-tag-name="-"],[data-tag-name="--"],[data-tag-name="---"],[data-tag-name="----"],[data-tag-name="-----"] {
opacity: 0.10;
}
[data-tag-name="-"] .bulletSide,[data-tag-name="--"] .bulletSide,[data-tag-name="---"] .bulletSide,[data-tag-name="----"] .bulletSide,[data-tag-name="-----"] .bulletSide {
display: none;
}
[data-tag-name="-"] .templateNameList,[data-tag-name="--"] .templateNameList,[data-tag-name="---"] .templateNameList,[data-tag-name="----"] .templateNameList,[data-tag-name="-----"] .templateNameList {
display: none;
}
Why is this a problem for you?
Mostly just to organize information more efficiently. I use it for fields especially...
Suggest a solution
Add an item to the / menu that is "separator" that formats a special node that looks like what's attached.