mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-15 18:39:52 +00:00
c295a731ec
In some cases ve-ui-mwTransclusionDialog-newSidebar could just removed when there are specific enough classes present so that we can be sure to not overwrite rules outside our use case. e.g with the new ve-ui-mwTwoPaneTransclusionDialogLayout-stackLayout Note that this will also remove some right padding on descriptions where it seems that it was applied for no reason. Bug: T310859 Change-Id: I6612fe1cb2ea6bd75e9bc3e6f4d6d8d0c4addc63
35 lines
713 B
CSS
35 lines
713 B
CSS
/*!
|
|
* VisualEditor MediaWiki UserInterface MWParameterPage styles.
|
|
*
|
|
* @copyright 2011-2020 VisualEditor Team and others; 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;
|
|
}
|
|
|
|
.ve-ui-mwParameterPage-statusIndicator {
|
|
display: inline-block;
|
|
vertical-align: middle;
|
|
opacity: 0.5;
|
|
}
|
|
|
|
.ve-ui-mwParameterPage-inlineDescription {
|
|
position: relative;
|
|
}
|
|
|
|
.ve-ui-mwParameterPage-inlineDescription > .ve-ui-expandableContent-container {
|
|
right: 0;
|
|
}
|
|
|
|
.ve-ui-mwParameterPage-undocumentedLabel {
|
|
margin-left: 0.4em;
|
|
font-size: 13px;
|
|
font-style: italic;
|
|
color: #72777d;
|
|
}
|