mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-12-04 18:58:37 +00:00
c9c7c06e76
Change-Id: Ic9fad12fe4c20793dd54cb3169b9dffe3a6a18da
20 lines
570 B
Plaintext
20 lines
570 B
Plaintext
/*!
|
|
* VisualEditor Vector-specific UserInterface DiffElement styles.
|
|
*
|
|
* @copyright See AUTHORS.txt
|
|
* @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,
|
|
ul {
|
|
margin-left: 0;
|
|
}
|
|
}
|