mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/CodeMirror
synced 2024-11-23 22:03:28 +00:00
Don't let CodeMirror set the font to monospace if it's set on an ancestor.
Bug: T245568 Change-Id: I135bf0f7bf73e0d9faaa43c565cef43c5c934a34
This commit is contained in:
parent
d70bd9d1ae
commit
d0418ae8bb
|
@ -1,5 +1,15 @@
|
|||
@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;
|
||||
|
|
Loading…
Reference in a new issue