mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-16 10:59:56 +00:00
a7d5751c80
Rules like "right-aligned images get float: right;" should be in the generic image CSS, they're not skin-specific. I haven't exactly teased apart what is and it's skin-specific, this is just a first stab. Change-Id: Ie374685d2c66e2275f7a98a590e563bf36da7f87
50 lines
1.3 KiB
CSS
50 lines
1.3 KiB
CSS
/*!
|
|
* VisualEditor MediaWiki Initialization ViewPageTarget shared styles.
|
|
* These are styles that are common to the vector, monobook, and apex skins, but may not
|
|
* be applied to other skins (for example, minerva).
|
|
*
|
|
* @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;
|
|
}
|