Pull in Parsoid's new styling module

Also remove CSS hack from MWTransclusionNode now that
we have properly styled Parsoid references.

Bug: 63983
Change-Id: I5e8dc4c618809f6dd923fe4676d57acd1094f93d
This commit is contained in:
James D. Forrester 2014-04-25 13:15:28 -07:00 committed by Roan Kattouw
parent d85317a710
commit 0a37cfb915
2 changed files with 1 additions and 7 deletions

View file

@ -651,6 +651,7 @@ $wgResourceModules += array(
'mediawiki.jqueryMsg',
'jquery.autoEllipsis',
'jquery.byteLimit',
'ext.parsoid.styles',
),
'messages' => array(
'visualeditor-beta-label',

View file

@ -4,7 +4,6 @@
* @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;
@ -14,9 +13,3 @@
.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;
}