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 