One very specific and one very general question for everyone:
I have set the indentMultiplier to 2 to add a bit of spacing in my notes. The spacing from a bullet remains at the default spacing, leading to an odd staggered look. Is there a CSS property to set the space from a bullet (and, presumably, from a checkbox in a TODO)?
More generally, is anyone maintaining a repo of themes for SilverBullet?
Given logseq’s organizational distractions, I’m giving SB another shot. I’ll have a couple of quality of life questions/suggestions before long, but I’m hoping this can be a permanent move!
I’m not sure I’m 100% understanding your question correctly, but in the editor when your markdown is rendered to HTML bulletpoints are the class cm-list-bullet and checkboxes are sb-checkbox so you could target them?
/* This moves out everything after a bullet (but also moves out checkboxes)*/
.cm-list-bullet {
margin-right: 1rem;
}
This works great for the line with the bullet, but then anything on the same line that’s wrapped around to the next is not at the right indentation level.
I think that’s the (admittedly minor) issue I’m having: If I bump up indentMultiplier to two, the alignment gets progressively worse. Screenshot: Imgur: The magic of the Internet
I’ll try adjusting the CSS fix to see if that gets me where I need to be. Thank you for the class name. I’m just getting re-started with SB and the CSS is unfamiliar.
You are using a non monospace font right? Then that’s a known issue, I tried to look into it and quite a while ago and kind of got nowhere. I looked at what obsidian does here as it’s using a very similar tech stack and it just computes the indent in js and I’m no CSS pro, but I feel like this is the only option here.
If anybody finds or has a good solution to this feel free to do a PR.