California Coast Theme

@AutonomyGaps for reference, here’s all the blockquote related CSS:


Here’s some CSS that will remove the quote icon in the editor:

.cc-pretty-editor .cm-formatting-quote {
  color: var(--text-normal) !important;
}

.cc-pretty-editor .cm-formatting-quote:before {
  display: none;
}

And you can use something like this to remove it from preview mode:

.cc-pretty-preview .markdown-preview-section blockquote:before {
	display: none;
}
1 Like