From poking around using built in element inspectors in browsers, I believe the following portion of one of the style sheets is the issue:
pre.CodeMirror-line-like.cm-mw-section-3,pre.CodeMirror-line.cm-mw-section-4,pre.CodeMirror-line-like.cm-mw-section-4,pre.CodeMirror-line.cm-mw-section-5,pre.CodeMirror-line-like.cm-mw-section-5,pre.CodeMirror-line.cm-mw-section-6,pre.CodeMirror-line-like.cm-mw-section-6,.cm-mw-section-3 ~ *,.cm-mw-section-4 ~ *,.cm-mw-section-5 ~ *,.cm-mw-section-6 ~ *{font-weight:bold;}In particular, from testing things out, I think the * following .cm-mw-section-3, .cm-mw-section-4, etc. at the end are what is causing the issue as when I delete the * in the developer tools window of my browser the issue immediately resolves.