mediawiki-extensions-CodeMi.../resources/ext.CodeMirror.less
AronDemian d0418ae8bb Don't let CodeMirror set the font to monospace if it's set on an ancestor.
Bug: T245568
Change-Id: I135bf0f7bf73e0d9faaa43c565cef43c5c934a34
2020-02-29 18:01:27 +00:00

28 lines
464 B
Plaintext

@import 'mediawiki.mixins';
.mw-editfont-monospace,
.mw-editfont-sans-serif,
.mw-editfont-serif {
.CodeMirror {
// Don't let CodeMirror set the font to monospace if it's set on an ancestor.
// See T245568
font-family: inherit;
}
}
.wikiEditor-ui .CodeMirror {
line-height: 1.5em;
padding: 0.1em;
clear: both;
pre,
.CodeMirror-lines {
padding: 0;
}
}
.wikiEditor-ui-toolbar {
// Increase z-index to be above codemirror scrollbar
z-index: 7;
}