mediawiki-extensions-Visual.../modules/ve-mw/init/styles/ve.init.mw.Target.less
James D. Forrester 2c77e88d2c doc: Bump copyright year for 2020
Change-Id: I30539877543dc2a57bd1428a00d10ac46d8fc294
2020-01-08 09:13:24 -08:00

94 lines
2.3 KiB
Plaintext

/*!
* VisualEditor MediaWiki Initialization Target styles.
*
* @copyright 2011-2020 VisualEditor Team and others; see AUTHORS.txt
* @license The MIT License (MIT); see LICENSE.txt
*/
/* Dialogs */
/* Override overflow: hidden; from MW styles */
.ve-ui-commandHelpDialog-section h3 {
overflow: visible;
}
/* IE hacks */
/* Undo overflow: hidden; from MW CSS to work around hasLayout issue */
.ve-init-target-ie .ve-ce-surface h1,
.ve-init-target-ie .ve-ce-surface h2,
.ve-init-target-ie .ve-ce-surface h3,
.ve-init-target-ie .ve-ce-surface h4,
.ve-init-target-ie .ve-ce-surface h5,
.ve-init-target-ie .ve-ce-surface h6 {
overflow: visible;
}
/* Override MediaWiki's styles that make sense in read mode only */
// Prevent jQuery.makeCollapsible from hiding things, even if collapsed by default.
// These selectors must exactly match those in jquery.makeCollapsible.styles.less in MediaWiki.
@exclude: ~'.mw-made-collapsible';
.client-js {
.ve-ce-surface,
.ve-ui-diffElement {
.mw-collapsed:not( @{exclude} ) {
> p {
display: block;
}
> table {
display: table;
}
> thead + tbody {
display: table-row-group;
}
tr:not( :first-child ) {
display: table-row;
}
.mw-collapsible-content {
display: block;
}
}
}
}
/*
* Grey out the fake toggles to make it more obvious they are not interactive.
* Don't bother trying to float the toggles, as the text they are floating around
* is now paragraph wrapped. Making these paragraphs display:inline would fix the
* rendering but causes them to be destroyed by the CE when empty (T197987).
*/
.ve-ce-mwTableNode.mw-collapsible :first-child tr:first-child th:last-child:before,
.ve-ce-mwTableNode.mw-collapsible > caption:first-child:after,
.ve-ui-diffElement table.mw-collapsible :first-child tr:first-child th:last-child:before,
.ve-ui-diffElement table.mw-collapsible > caption:first-child:after {
color: #999;
float: none;
}
.ve-ce-surface div.mw-collapsible:before,
.ve-ui-diffElement div.mw-collapsible:before {
color: #999;
}
/* Reset section node styles */
.ve-init-mw-target .ve-ce-sectionNode:before,
.ve-init-mw-target .ve-ce-sectionNode:after {
content: normal;
}
.ve-init-mw-target .ve-ce-surface-enabled .ve-ce-sectionNode:not( .ve-ce-activeNode-active ) {
opacity: 1;
}
/* Save button */
.ve-ui-toolbar-saveButton {
white-space: nowrap;
font-weight: bold;
}