mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/CodeMirror
synced 2024-11-15 10:19:27 +00:00
4a3c2dcad5
I had to make some CSS selectors more specific, because the library changed .CodeMirror pre to .CodeMirror pre.CodeMirror-line, .CodeMirror pre.CodeMirror-line-like This is only relevant for entire lines (implemented as <pre> elements). Most of the custom CSS is for characters, not lines. In my tests in the Wikitext editor as well as VisualEditor I could not spot any difference between the old and new version. Bug: T258999 Change-Id: I6f0f030f972838727f3ef220feb105264f122798
87 lines
1.8 KiB
Plaintext
87 lines
1.8 KiB
Plaintext
.ve-init-mw-desktopArticleTarget {
|
|
.CodeMirror {
|
|
height: auto;
|
|
z-index: -1;
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
-webkit-box-sizing: border-box;
|
|
-moz-box-sizing: border-box;
|
|
box-sizing: border-box;
|
|
pointer-events: none;
|
|
background: transparent;
|
|
|
|
// Core VE default padding
|
|
padding: 1.5em;
|
|
|
|
// Skin specific paddings
|
|
.skin-vector & {
|
|
/* stylelint-disable-next-line unit-blacklist */
|
|
padding: 0 1rem;
|
|
|
|
@media screen and ( min-width: 982px ) {
|
|
.skin-vector-legacy& {
|
|
/* stylelint-disable-next-line unit-blacklist */
|
|
padding: 0 1.5rem;
|
|
}
|
|
}
|
|
}
|
|
|
|
.skin-minerva &,
|
|
.skin-monobook & {
|
|
padding: 0;
|
|
}
|
|
}
|
|
|
|
.CodeMirror-lines,
|
|
.CodeMirror pre.CodeMirror-line,
|
|
.CodeMirror pre.CodeMirror-line-like {
|
|
padding: 0;
|
|
}
|
|
|
|
.CodeMirror-scroll {
|
|
margin-right: 0;
|
|
overflow: auto !important; /* stylelint-disable-line declaration-no-important */
|
|
}
|
|
|
|
.CodeMirror-sizer {
|
|
border-right: 0;
|
|
}
|
|
|
|
.CodeMirror pre.cm-mw-section-1,
|
|
.CodeMirror pre.cm-mw-section-2 {
|
|
font-size: inherit;
|
|
line-height: inherit;
|
|
}
|
|
|
|
// Ensure surfaces are using identical font rules
|
|
.CodeMirror-code,
|
|
.CodeMirror-code *,
|
|
.ve-ui-mwWikitextSurface .ve-ce-paragraphNode {
|
|
// The following are already set by mw-editfont-monospace on the parent: font-size, font-family
|
|
line-height: 1.5em;
|
|
word-wrap: break-word;
|
|
white-space: pre-wrap;
|
|
word-break: normal;
|
|
-webkit-hyphens: manual;
|
|
-moz-hyphens: manual;
|
|
-ms-hyphens: manual;
|
|
hyphens: manual;
|
|
-webkit-font-variant-ligatures: contextual;
|
|
font-variant-ligatures: contextual;
|
|
|
|
// Monospace fonts can change width when bold
|
|
// stylelint-disable-next-line declaration-no-important
|
|
font-weight: normal !important;
|
|
}
|
|
}
|
|
|
|
.ve-ce-documentNode-codeEditor-hide {
|
|
opacity: 0.4;
|
|
}
|
|
|
|
.ve-ce-documentNode-codeEditor-webkit-hide {
|
|
-webkit-text-fill-color: transparent;
|
|
}
|