mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-15 10:35:48 +00:00
d44bb0bc1b
Removing `0.8em` VE special base `font-size` for UI as we're unifying OOUI interfaces to `14px` equals to `0.875em` at user agent default size. Bug: T97631 Depends-on: I693d168d2ccf2babbcfe8952af3e1c262aa97773 Change-Id: I84edeec38ecfb90f5d53199f3b26fc3f83ab0611
81 lines
2.8 KiB
CSS
81 lines
2.8 KiB
CSS
/*!
|
|
* VisualEditor MediaWiki Initialization DesktopArticleTarget Vector skin styles.
|
|
*
|
|
* @copyright 2011-2018 VisualEditor Team and others; see AUTHORS.txt
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
*/
|
|
|
|
.ve-activated .vectorTabs .selected {
|
|
box-shadow: inset 0 -1px 0 #e1f1fc;
|
|
}
|
|
|
|
.ve-init-mw-desktopArticleTarget .ve-init-mw-target-surface {
|
|
/*
|
|
In order to allow placing the text cursor to the start or end of the text by
|
|
clicking in the margin area, we expand the outer boundary of the surface
|
|
outside the parent container using negative margin. Then we shrink the visible
|
|
rendering by applying inner padding. The end result is that the content is
|
|
the same width as in read mode, except with the padding around it now being
|
|
part of it instead of its parent, thus making it treat the area as part
|
|
of content editable.
|
|
*/
|
|
/* 1/0.875 */
|
|
margin: 0 -1.14286em;
|
|
}
|
|
|
|
.ve-init-mw-desktopArticleTarget .ve-init-mw-target-surface .ve-ce-documentNode,
|
|
.ve-init-mw-desktopArticleTarget .ve-init-mw-target-surface .ve-ui-surface-placeholder {
|
|
padding: 0 1.14286em; /* 1/0.875 */
|
|
}
|
|
|
|
.ve-init-mw-desktopArticleTarget .ve-ui-mwWikitextSurface .ve-ce-documentNode,
|
|
.ve-init-mw-desktopArticleTarget .ve-ui-mwWikitextSurface .ve-ui-surface-placeholder {
|
|
padding: 0 1.2em; /* 1/ 16/13.3333 */
|
|
}
|
|
|
|
.mw-body .ve-init-mw-desktopArticleTarget .ve-init-mw-target-surface .ve-ui-surface-placeholder > * {
|
|
/* Fix margin overlap */
|
|
margin-top: 0;
|
|
/* Placeholder doesn't need a border as well */
|
|
border: 0;
|
|
}
|
|
|
|
/* Main document debug bar */
|
|
.ve-init-mw-desktopArticleTarget .ve-init-mw-target-surface > .ve-ui-debugBar {
|
|
/* 1/0.875 */
|
|
padding: 1.14286em;
|
|
padding-bottom: 0;
|
|
margin-top: 1.14286em;
|
|
}
|
|
|
|
/* High-definition-specific styles (because Vector adds 1em to the leftNav if width is 982px+ */
|
|
@media screen and ( min-width: 982px ) {
|
|
.ve-init-mw-desktopArticleTarget .ve-init-mw-target-surface {
|
|
/* 1.5/0.875 */
|
|
margin: 0 -1.71429em;
|
|
}
|
|
|
|
.ve-init-mw-desktopArticleTarget .ve-init-mw-target-surface .ve-ce-documentNode,
|
|
.ve-init-mw-desktopArticleTarget .ve-init-mw-target-surface .ve-ui-surface-placeholder {
|
|
padding: 0 1.71429em; /* surface-margin-left (1.5em) / (mw-body-content font-size) 0.875em */
|
|
}
|
|
|
|
.ve-init-mw-desktopArticleTarget .ve-ui-mwWikitextSurface .ve-ce-documentNode,
|
|
.ve-init-mw-desktopArticleTarget .ve-ui-mwWikitextSurface .ve-ui-surface-placeholder {
|
|
padding: 0 1.8em; /* surface-margin-left (1.5em) / 16/13.3333 */
|
|
}
|
|
|
|
/* Main document debug bar */
|
|
.ve-init-mw-desktopArticleTarget .ve-init-mw-target-surface > .ve-ui-debugBar {
|
|
/* 1.5/0.875 */
|
|
padding: 1.71429em;
|
|
padding-bottom: 0;
|
|
margin-top: 1.71429em;
|
|
}
|
|
}
|
|
|
|
/* Prevent the progress bar from overlaying the welcome dialog */
|
|
.ve-init-mw-desktopArticleTarget-windowManager-welcome .oo-ui-dialog {
|
|
z-index: 2;
|
|
}
|