mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-19 04:05:57 +00:00
aa137ef2ad
Reasons why these files should not be in a directory named "themes/": * They are specific to MediaWiki skins, not OOUI themes * They are specific to one module, rather than affecting many widgets The new locations/filenames are consistent with other modules that have skin-specific styles. Note that we have one more themes/ directory elsewhere in this repo (and another in VE core) and that is okay. Bug: T96704 Change-Id: I70bb61e339aeccb3afea657f665785ceaa091777
49 lines
924 B
CSS
49 lines
924 B
CSS
/*!
|
|
* VisualEditor MediaWiki UserInterface MWParameterPage styles.
|
|
*
|
|
* @copyright 2011-2018 VisualEditor Team and others; see AUTHORS.txt
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
*/
|
|
|
|
.ve-ui-mwParameterPage-actions {
|
|
display: none;
|
|
}
|
|
|
|
.ve-ui-mwParameterPage-label {
|
|
display: inline-block;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.ve-ui-mwParameterPage-statusIndicator {
|
|
display: inline-block;
|
|
opacity: 0.5;
|
|
}
|
|
|
|
.ve-ui-mwParameterPage-description-required,
|
|
.ve-ui-mwParameterPage-description-deprecated {
|
|
font-style: italic;
|
|
color: #54595d;
|
|
}
|
|
|
|
.ve-ui-mwParameterPage-infoButton,
|
|
.ve-ui-mwParameterPage-removeButton {
|
|
display: none;
|
|
}
|
|
|
|
.ve-ui-mwParameterPage-field {
|
|
padding-top: 0.25em;
|
|
}
|
|
|
|
.ve-ui-mwParameterPage .oo-ui-textInputWidget textarea {
|
|
height: 2.5em;
|
|
}
|
|
|
|
.ve-ui-mwParameterPage-more {
|
|
display: none;
|
|
margin: 1em 0 0.5em 0;
|
|
}
|
|
|
|
.ve-ui-mwParameterPage:last-child .ve-ui-mwParameterPage-more {
|
|
display: block;
|
|
}
|