mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-15 18:39:52 +00:00
c9c10cf5b8
New changes: 20c220a Remove unused CSS classes 9bdcc65 Comment icon positioning e50e790 [BREAKING CHANGE] Fix ve.ui.Overlay classes 1ac4927 ve.ce.TextNode: Use getChar() helper 29fd0f8 ve.ce.TextNode: Simplify #getAnnotatedHtml logic 18336eb ve.ce.ResizableNode: Run find() once instead of 4x in showHandles() febf125 Use getDescription for title attribute ab3cb6c Localisation updates from https://translatewiki.net. Local changes: * Rename overlay class rules Change-Id: Ia90b6afbd4abdf3267f4ccaac0b2a7d4101ccc7b
83 lines
2.3 KiB
CSS
83 lines
2.3 KiB
CSS
/*!
|
|
* VisualEditor MediaWiki Initialization ViewPageTarget Vector skin styles.
|
|
*
|
|
* @copyright 2011-2014 VisualEditor Team and others; see AUTHORS.txt
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
*/
|
|
|
|
.ve-init-mw-viewPageTarget-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.
|
|
*/
|
|
margin: 0.8em -1em 0 -1em;
|
|
}
|
|
|
|
.ve-init-mw-viewPageTarget-surface .ve-ce-documentNode {
|
|
padding: 0 1.143em; /* surface-margin-left (1em) / (mw-body-content font-size) 0.875em */
|
|
}
|
|
|
|
.ve-init-mw-viewPageTarget-surface .oo-ui-menuWidget {
|
|
font-size: 0.8em;
|
|
}
|
|
|
|
.ve-init-mw-viewPageTarget-toolbar {
|
|
margin: -1em -1em 1em -1em;
|
|
-webkit-transition: margin 200ms ease-out;
|
|
-moz-transition: margin 200ms ease-out;
|
|
-o-transition: margin 200ms ease-out;
|
|
transition: margin 200ms ease-out;
|
|
position: relative;
|
|
}
|
|
|
|
.ve-ui-debugBar {
|
|
padding: 1em;
|
|
margin: 1em -1em -1em -1em;
|
|
border-top: solid 1px #ccc;
|
|
box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.15) inset;
|
|
}
|
|
|
|
.ve-ui-debugBar ol {
|
|
margin-left: 0;
|
|
}
|
|
|
|
.ve-ui-overlay-global {
|
|
z-index: 101; /* #p-personal is z-index 100 in vector :( */
|
|
}
|
|
|
|
.oo-ui-actionWidget a:hover {
|
|
text-decoration: none;
|
|
}
|
|
|
|
/* ve.ce.TableCellnode.css's margin replaced by more specific rule in Vector (div#content p) */
|
|
/*csslint ids:false */
|
|
#content .ve-ce-tableCellNode .ve-ce-paragraphNode {
|
|
margin: 0;
|
|
}
|
|
/*csslint ids:true */
|
|
|
|
/* High-definition-specific styles (because Vector adds 1em to the leftNav if width is 982px+ */
|
|
@media screen and (min-width: 982px) {
|
|
.ve-init-mw-viewPageTarget-surface {
|
|
margin: 0.8em -1.5em 0 -1.5em;
|
|
}
|
|
|
|
.ve-init-mw-viewPageTarget-surface .ve-ce-documentNode {
|
|
padding: 0 1.714em; /* surface-margin-left (1.5em) / (mw-body-content font-size) 0.875em */
|
|
}
|
|
|
|
.ve-init-mw-viewPageTarget-toolbar {
|
|
margin: -1.25em -1.5em 1.5em -1.5em;
|
|
}
|
|
|
|
.ve-ui-debugBar {
|
|
padding: 1.5em;
|
|
margin: 1em -1.5em -1.5em -1.5em;
|
|
}
|
|
}
|