mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/Vector.git
synced 2024-11-13 17:57:06 +00:00
f31f0bbf50
Change-Id: I6f5e97dde1f774e741a4236d1f6b49ad146cc236
19 lines
537 B
Plaintext
19 lines
537 B
Plaintext
@import '../resources/common/variables.less';
|
|
|
|
// Reset the font-size for the whole body, but then re-override this below
|
|
// to ensure the preview width (which is based on font-size) is correct.
|
|
.vector-body {
|
|
font-size: @font-size-reset;
|
|
}
|
|
|
|
// Even if the editing form is max-width, the preview should be constrained.
|
|
.vector-feature-limited-width-disabled #wikiPreview {
|
|
max-width: @max-width-content-container;
|
|
margin: auto;
|
|
}
|
|
|
|
// Change font-size for the actual preview content.
|
|
.mw-parser-output {
|
|
font-size: @font-size-base;
|
|
}
|