CSS for showing heading levels in gutter

I would like to have heading levels (H1, H2, etc.) showing in the editor’s gutter (pls. see image)

I’d like to use a snippet so that the heading levels are always visible disregarding ot theme.

I know there are themes that do this, but I use Obsidian on both mobile tablet, smartphone and desktop, and it is not optimal to use same theme on different devices, while I’d like to see heading levels on all devices.

I am also aware of the Lapels plugin, but it does not work on any of my devices.

I used the theme URSA on desktop to demonstrate my point, but unfortunately Ursa makes text impossibly tiny on mobile and the tags’ coloring and format on mobile is practically illegible.

In general, it is dissapointing that most of the best stuff for Obsidian is aimed for desktop.

On mobile and accross several devices Obsidian is invaluable tool for me, because I have short term memory difficulties.

Any ideas would be greatly appreciated

Thank you in advance
image host

2 Likes

OK, so here’s a CSS snippet I came up with that works in all 3 viewing modes (and hides when editing the header), although I haven’t tested it on mobile but should work just fine (preview images below):

:root {
  --hh-gutter-margin: 0;
  --hh-marker-size: 65 / 100;
}

h1:before, .HyperMD-header-1:not(.cm-active):before {
  content: "H1 ";
  font-size: calc(var(--h1-size) * var(--hh-marker-size));
  margin-left: var(--hh-gutter-margin);
}
h2:before, .HyperMD-header-2:not(.cm-active):before {
  content: "H2 ";
  font-size: calc(var(--h2-size) * var(--hh-marker-size));
  margin-left: var(--hh-gutter-margin);
}
h3:before, .HyperMD-header-3:not(.cm-active):before {
  content: "H3 ";
  font-size: calc(var(--h3-size) * var(--hh-marker-size));
  margin-left: var(--hh-gutter-margin);
}
h4:before, .HyperMD-header-4:not(.cm-active):before {
  content: "H4 ";
  font-size: calc(var(--h4-size) * var(--hh-marker-size));
  margin-left: var(--hh-gutter-margin);
}
h5:before, .HyperMD-header-5:not(.cm-active):before {
  content: "H5 ";
  font-size: calc(var(--h5-size) * var(--hh-marker-size));
  margin-left: var(--hh-gutter-margin);
}
h6:before, .HyperMD-header-6:not(.cm-active):before {
  content: "H6 ";
  font-size: calc(var(--h6-size) * var(--hh-marker-size));
  margin-left: var(--hh-gutter-margin);
}

Result with --hh-gutter-margin: -20px (that is, the heading markers are slightly offset to the left of the main content):

Screenshot-01_12_2023-03.10.05

Result with --hh-gutter-margin: 0 (that is, no offset so heading markers are inline with the main content):

Screenshot-01_12_2023-03.10.15

NOTE: you can also adjust the size of the marker with --hh-marker-size, which is a percentage as you may have noticed and as @holroy realized was a better way of achieving this than using random divisions as I initially did.

1 Like

@woofy31 , I was thinking along the same lines, but I don’t remember the selectors for headers in live preview. :smiley:

One question though; why don’t you set the size of the prefix to be say 80% of the accompanying header size? Why do you divide by that seemingly random numbers?

1 Like

Because it was about 4am and it was the last thing I did before falling asleep after a long day :sweat_smile: Now I am both ashamed of myself AND amazed by what the brain does when sleep-deprived :open_mouth:

I have updated the code, but 80% was still a bit too big as opposed to the preview that OP showed, so I felt 65% was around the size in OP’s preview image.

And I also added a variable for OP to change that percentage if needed.

2 Likes

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.