mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-15 10:35:48 +00:00
fd538835ef
In wikitext editor these messages were in mw-body-content where they inherited a sensible line height, so apply one manually. Bonus: * Make header bold * Remove some duplication with inheritance Change-Id: Ia7eaa556815ee6645a85162de03198e5a4dc7b03
49 lines
1 KiB
CSS
49 lines
1 KiB
CSS
/*!
|
|
* VisualEditor MediaWiki UserInterface popup tool styles.
|
|
*
|
|
* @copyright 2011-2015 VisualEditor Team and others; see AUTHORS.txt
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
*/
|
|
|
|
.ve-ui-mwPopupTool .oo-ui-popupWidget-head {
|
|
font-weight: bold;
|
|
}
|
|
|
|
.ve-ui-mwNoticesPopupTool-items,
|
|
.ve-ui-mwHelpPopupTool-items {
|
|
padding: 0.5em 1em;
|
|
line-height: 1.6em;
|
|
}
|
|
|
|
.ve-ui-mwNoticesPopupTool-items > div:not(:first-child),
|
|
.ve-ui-mwHelpPopupTool-item:not(:first-child) {
|
|
border-top: solid 1px #ddd;
|
|
padding-top: 0.8em;
|
|
margin-top: 0.8em;
|
|
}
|
|
|
|
.ve-ui-mwHelpPopupTool-item > .oo-ui-buttonElement-frameless {
|
|
display: block;
|
|
margin: 0.5em 0;
|
|
}
|
|
|
|
.ve-ui-mwHelpPopupTool-item > .oo-ui-buttonElement-frameless:first-child {
|
|
margin-top: 0;
|
|
}
|
|
|
|
.ve-ui-mwHelpPopupTool-version-label,
|
|
.ve-ui-mwHelpPopupTool-version-link,
|
|
.ve-ui-mwHelpPopupTool-version-date {
|
|
font-size: 0.9em;
|
|
color: #555;
|
|
}
|
|
|
|
/*
|
|
* Bidi-isolate the version number,
|
|
* so it won't mess up the date after it.
|
|
* Bug 68688
|
|
*/
|
|
.ve-ui-mwHelpPopupTool-version-link {
|
|
unicode-bidi: embed;
|
|
}
|