mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-12-11 22:16:15 +00:00
299738307e
This makes it possible to click on "(undocumented parameter)" to focus the input field – the same effect as when clicking the parameter name. This also lower-cases the initual "(U…". This is not the beginning of a sentence. Change-Id: Ibfa5bbaee39c2b3a4fefbcee33102b85ca3ba9c0
36 lines
735 B
CSS
36 lines
735 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;
|
|
font-weight: normal;
|
|
color: #72777d;
|
|
}
|