Sometimes I mess up and delete the text of a rem that containers other indented, child rems. If it’s closed, then I only know the rem has child (as opposed to being totally empty) by hovering over it and seeing if there’s a + or an arrow to toggle.
What would be a way to indicate children rems of a rem which has no text, itself? Is there a CSS way to show it? Updated: I do this with
.rem {border-left: 1px solid #ccc !important}
which works but adds another vertical border in addition to the outline-nesting border.
I would like to turn on bullets (maybe a lighter gray if there’s no text in the rem, as opposed to #333) for rems which have no text in them. I find I’m a bit lost without something to tell me where I have empty things. Maybe that is also possible with CSS? I couldn’t figure out what the selectors are for rems with no text, or just spaces. I tested this with a single space, and the rem still doesn’t have a bullet. So it seems “whitespace only” is the designation for “hide bullet”.