mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-12-04 02:39:02 +00:00
2fc809dc17
Replaces hardcoded color hex values with their equivalent values from Codex, via the "mediawiki.skin.variables" system. Bug: T366197 Change-Id: Ia929a1a8d6351222acb454c8ec750e920ae6d072
39 lines
723 B
Plaintext
39 lines
723 B
Plaintext
/*!
|
|
* VisualEditor MediaWiki UserInterface MWParameterPage styles.
|
|
*
|
|
* @copyright See AUTHORS.txt
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
*/
|
|
@import 'mediawiki.skin.variables.less';
|
|
|
|
.ve-ui-mwParameterPage {
|
|
&-label {
|
|
display: inline;
|
|
vertical-align: middle;
|
|
font-weight: bold;
|
|
overflow-wrap: break-word;
|
|
}
|
|
|
|
&-statusIndicator {
|
|
opacity: 0.5;
|
|
}
|
|
|
|
&-inlineDescription {
|
|
position: relative;
|
|
|
|
> .ve-ui-expandableContent-container {
|
|
right: 0;
|
|
}
|
|
}
|
|
|
|
&-undocumentedLabel {
|
|
margin-left: 0.4em;
|
|
/* TODO: Use ems? */
|
|
/* stylelint-disable-next-line declaration-property-unit-disallowed-list */
|
|
font-size: 13px;
|
|
font-style: italic;
|
|
font-weight: normal;
|
|
color: @color-disabled;
|
|
}
|
|
}
|