mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-12-12 06:27:01 +00:00
241d3da05d
Bug: T344181 Change-Id: I5a2a9413ee5125ca7dc416ce3e8b75060dc96b83
18 lines
696 B
CSS
18 lines
696 B
CSS
/*!
|
|
* VisualEditor Vector-specific UserInterface DiffElement styles.
|
|
*
|
|
* @copyright 2011-2023 VisualEditor Team and others; see http://ve.mit-license.org
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
*/
|
|
|
|
/* Content class is needed for content styling, but adds unwanted extra margins (T344181) */
|
|
.ve-ui-diffElement-document.content { /* stylelint-disable-line selector-class-pattern */
|
|
margin: 0;
|
|
}
|
|
|
|
/* Lack of space to indent param lists (T344181). Could be removed if sidebar layout changed. */
|
|
.ve-ui-diffElement-attributeChange.oo-ui-labelElement .oo-ui-labelElement-label ol,
|
|
.ve-ui-diffElement-attributeChange.oo-ui-labelElement .oo-ui-labelElement-label ul {
|
|
margin-left: 0;
|
|
}
|