mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-16 19:09:29 +00:00
22 lines
583 B
CSS
22 lines
583 B
CSS
|
/*!
|
||
|
* VisualEditor ContentEditable MediaWiki MWTransclusionNode styles.
|
||
|
*
|
||
|
* @copyright 2011-2014 VisualEditor Team and others; see AUTHORS.txt
|
||
|
* @license The MIT License (MIT); see LICENSE.txt
|
||
|
*/
|
||
|
/*csslint overqualified-elements:false */
|
||
|
|
||
|
.ve-ce-mwTransclusionInlineNode {
|
||
|
display: inline-block;
|
||
|
}
|
||
|
|
||
|
/* HACK: Hide Ref errors in templates */
|
||
|
.ve-ce-mwTransclusionNode .mw-ext-cite-error {
|
||
|
display: none;
|
||
|
}
|
||
|
|
||
|
/* HACK: Fake superscript style for references generated as spans in templates */
|
||
|
.ve-ce-mwTransclusionNode span.reference {
|
||
|
vertical-align: super;
|
||
|
font-size: smaller;
|
||
|
}
|