mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-15 02:23:58 +00:00
Remove media item styling moved to MW-core in I400336c12d.
Change-Id: I348e55ddea94f3b67f647c66ba53f7384d683584
This commit is contained in:
parent
a8501778dd
commit
963e133851
|
@ -31,10 +31,10 @@ ve.ce.MWBlockImageNode = function VeCeMWBlockImageNode( model, config ) {
|
|||
|
||||
// DOM Hierarchy for BlockImageNode:
|
||||
// <div> this.$element
|
||||
// <figure> this.$figure (ve-ce-mwBlockImageNode-type (thumb) (tright/tleft/etc))
|
||||
// <figure> this.$figure (ve-ce-mwBlockImageNode-{type})
|
||||
// <a> this.$a
|
||||
// <img> this.$image (thumbimage)
|
||||
// <figcaption> this.caption.view.$element (thumbcaption)
|
||||
// <img> this.$image
|
||||
// <figcaption> this.caption.view.$element
|
||||
|
||||
// Build DOM:
|
||||
this.$a = this.$( '<a>' )
|
||||
|
@ -206,15 +206,7 @@ ve.ce.MWBlockImageNode.prototype.updateSize = function ( dimensions ) {
|
|||
}
|
||||
|
||||
this.$image.css( dimensions );
|
||||
|
||||
this.$figure.css( {
|
||||
// If we have a border then the width is increased by 2
|
||||
'width': dimensions.width + ( this.captionVisible ? 2 : 0 ),
|
||||
'height': this.captionVisible ? 'auto' : dimensions.height
|
||||
} );
|
||||
|
||||
this.$figure.toggleClass( 'mw-default-size', !!this.model.getAttribute( 'defaultSize' ) );
|
||||
|
||||
};
|
||||
|
||||
/**
|
||||
|
|
|
@ -19,9 +19,6 @@
|
|||
ve.ce.MWImageCaptionNode = function VeCeMWImageCaptionNode( model, config ) {
|
||||
// Parent constructor
|
||||
ve.ce.BranchNode.call( this, model, config );
|
||||
|
||||
// DOM changes
|
||||
this.$element.addClass( 'thumbcaption' );
|
||||
};
|
||||
|
||||
/* Inheritance */
|
||||
|
|
|
@ -6,52 +6,7 @@
|
|||
*/
|
||||
/*csslint regex-selectors:false, overqualified-elements:false */
|
||||
|
||||
figure[typeof*='mw:Image'] {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
figure[typeof*='mw:Image'] a {
|
||||
border: 0;
|
||||
}
|
||||
|
||||
/* TODO: Merge with div.tright styles */
|
||||
/* Due to a weird cssjanus bug, noflip rules
|
||||
are set as single-rules rather than for the
|
||||
whole class */
|
||||
figure[typeof*='mw:Image'].mw-halign-right {
|
||||
/* @noflip */
|
||||
clear: right;
|
||||
/* @noflip */
|
||||
float: right;
|
||||
}
|
||||
|
||||
figure[typeof*='mw:Image'].mw-halign-center {
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
|
||||
/* TODO: Merge with div.tleft styles */
|
||||
/* Due to a weird cssjanus bug, noflip rules
|
||||
are set as single-rules rather than for the
|
||||
whole class */
|
||||
figure[typeof*='mw:Image'].mw-halign-left {
|
||||
/* @noflip */
|
||||
clear: left;
|
||||
/* @noflip */
|
||||
float: left;
|
||||
}
|
||||
|
||||
figure:not([typeof='mw:Image/Thumb']) figcaption .magnify {
|
||||
display:none;
|
||||
}
|
||||
|
||||
/* TODO: Merge with div.thumbinner styles */
|
||||
figure[typeof='mw:Image/Thumb'], figure[typeof='mw:Image/Frame'] {
|
||||
overflow: hidden;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
/* Hide outer shield for centered images */
|
||||
figure[typeof*='mw:Image'].mw-halign-center + .ve-ce-protectedNode-shield {
|
||||
figure[typeof~='mw:Image'].mw-halign-center + .ve-ce-protectedNode-shield {
|
||||
display: none;
|
||||
}
|
||||
|
|
|
@ -6,48 +6,3 @@
|
|||
* @copyright 2011-2014 VisualEditor Team and others; see AUTHORS.txt
|
||||
* @license The MIT License (MIT); see LICENSE.txt
|
||||
*/
|
||||
|
||||
/* ve.ce.MWBlockImageNode */
|
||||
|
||||
figure[typeof*='mw:Image'] {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
figure[typeof*='mw:Image'] a {
|
||||
border: 0;
|
||||
}
|
||||
|
||||
/* TODO: Merge with div.tright styles */
|
||||
/* Due to a weird cssjanus bug, noflip rules
|
||||
are set as single-rules rather than for the
|
||||
whole class */
|
||||
figure[typeof*='mw:Image'].mw-halign-right {
|
||||
/* @noflip */
|
||||
margin: .5em 0 1.3em 1.4em;
|
||||
}
|
||||
|
||||
/* TODO: Merge with div.tleft styles */
|
||||
/* Due to a weird cssjanus bug, noflip rules
|
||||
are set as single-rules rather than for the
|
||||
whole class */
|
||||
figure[typeof*='mw:Image'].mw-halign-left {
|
||||
/* @noflip */
|
||||
margin: .5em 1.4em 1.3em 0;
|
||||
}
|
||||
|
||||
/* TODO: Merge with div.thumbinner styles */
|
||||
figure[typeof='mw:Image/Thumb'], figure[typeof='mw:Image/Frame'] {
|
||||
background-color: #f9f9f9;
|
||||
border: 1px solid #cccccc;
|
||||
padding: 3px !important;
|
||||
font-size: 94%;
|
||||
}
|
||||
|
||||
/* TODO: Merge with .thumbimage styles */
|
||||
figure[typeof*='mw:Image'] .ve-ce-mwBlockImageNode-thumbimage {
|
||||
border: 1px solid #cccccc;
|
||||
}
|
||||
|
||||
figure[typeof*='mw:Image'].mw-image-border img {
|
||||
border: 1px solid #cccccc;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue