mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-12-04 18:58:37 +00:00
c9c7c06e76
Change-Id: Ic9fad12fe4c20793dd54cb3169b9dffe3a6a18da
38 lines
674 B
Plaintext
38 lines
674 B
Plaintext
/*!
|
|
* VisualEditor MediaWiki UserInterface MWParameterPage styles.
|
|
*
|
|
* @copyright See AUTHORS.txt
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
*/
|
|
|
|
.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: #72777d;
|
|
}
|
|
}
|