Outliner doesnt work

Things I have tried

What I’m trying to do

how can i make toggle lines like roam research like this
image

Hi Jenny,

It seems you want to change the background color of all bulleted toggle-lines.

This will do it:

.CodeMirror-gutter-wrapper + li {
  background-color: red !important;
}

That changes the background-color of bulleted toggle-lines to red.

  • If your toggle-line is not a list item, change “li” to the correct type (like “h1” for headings or “pre” for text).

Hope that’s what you meant :butterfly:

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