CSS to always show fold triangle in live preview?

Regarding the fold toggle / triangle, Live preview is a little TOO clean for liking.

Any ideas on a css snippet that would always show the fold toggle, instead of only showing when mouse hover?

2 Likes

You can use this Snippet:

	.markdown-source-view.mod-cm6 .cm-fold-indicator .collapse-indicator {
		opacity: 1;
	}
2 Likes

Works perfectly! You really helped me out; saved me the usual hour I spend googling and digging through developer tools when I want to make a one little css change… it’s a problem :flushed:

Thank you!

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