mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-12-13 14:58:43 +00:00
45 lines
790 B
Plaintext
45 lines
790 B
Plaintext
|
/*!
|
||
|
* VisualEditor MediaWiki UserInterface help list toolgroup styles.
|
||
|
*
|
||
|
* @copyright 2011-2020 VisualEditor Team and others; see AUTHORS.txt
|
||
|
* @license The MIT License (MIT); see LICENSE.txt
|
||
|
*/
|
||
|
|
||
|
.ve-ui-mwHelpListToolGroup {
|
||
|
&-tools {
|
||
|
// Required in monbook
|
||
|
white-space: normal;
|
||
|
|
||
|
&-footer {
|
||
|
padding: 10px;
|
||
|
width: 300px;
|
||
|
line-height: 1.5;
|
||
|
border-top: 1px solid #c8ccd1;
|
||
|
}
|
||
|
|
||
|
> .oo-ui-tool {
|
||
|
width: 320px;
|
||
|
|
||
|
.oo-ui-tool-link {
|
||
|
/* These labels can be very long, so allow them to wrap (T190796) */
|
||
|
white-space: normal;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
&-version-link,
|
||
|
&-version-date {
|
||
|
font-size: 0.9em;
|
||
|
color: #54595d;
|
||
|
}
|
||
|
|
||
|
/*
|
||
|
* Bidi-isolate the version number,
|
||
|
* so it won't mess up the date after it.
|
||
|
* T70688
|
||
|
*/
|
||
|
&-version-link {
|
||
|
unicode-bidi: embed;
|
||
|
}
|
||
|
}
|