mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/MinervaNeue
synced 2024-11-14 09:54:45 +00:00
05e6069ab6
To test check out I5c1fdfc87a48764cbb53b7a751fbffc1a4e36fc5 `` $wgMFContentProviderClass = 'MobileFrontend\ContentProviders\McsContentProvider'; $wgMFMcsContentProviderBaseUri = "https://he.wikipedia.org/api/rest_v1"; ``` Navigate to http://localhost:8888/w/index.php/%D7%93%D7%92%D7%9C_%D7%99%D7%A4%D7%9F Bug: T198534 Change-Id: I19e9456895789abc413679105da46cbd4f9f0ce9
69 lines
1.3 KiB
Plaintext
69 lines
1.3 KiB
Plaintext
/**
|
|
* Style Parsoid HTML+RDFa output consistent with wikitext from PHP parser.
|
|
*/
|
|
|
|
@import '../../minerva.less/minerva.variables';
|
|
|
|
/*
|
|
* Auto-numbered external links
|
|
* (copied from MediaWiki's content.parsoid.less)
|
|
*/
|
|
.mw-parser-output {
|
|
counter-reset: mw-numbered-ext-link;
|
|
|
|
a[ rel~='mw:ExtLink' ]:empty:after {
|
|
content: '[' counter( mw-numbered-ext-link ) ']';
|
|
counter-increment: mw-numbered-ext-link;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Block media items
|
|
* (mostly derived from MediaWiki's content.parsoid.less)
|
|
*/
|
|
figure[ typeof*='mw:Image' ],
|
|
figure[ typeof*='mw:Video' ],
|
|
figure[ typeof*='mw:Audio' ] {
|
|
max-width: 100%;
|
|
// Centered on non-tablet
|
|
margin: 0 auto;
|
|
}
|
|
|
|
/* T198534 */
|
|
.mw-image-border {
|
|
display: inline-block;
|
|
}
|
|
|
|
@media screen and ( min-width: @width-breakpoint-tablet ) {
|
|
figure[ typeof*='mw:Image' ],
|
|
figure[ typeof*='mw:Video' ],
|
|
figure[ typeof*='mw:Audio' ] {
|
|
// Defaults to right alignment when not explicitly set. Should be flippable.
|
|
margin: 0.6em 0 0.6em 1.4em;
|
|
|
|
&.mw-halign-left {
|
|
/* @noflip */
|
|
margin: 0.6em 1.4em 0.6em 0;
|
|
/* @noflip */
|
|
clear: left;
|
|
/* @noflip */
|
|
float: left;
|
|
}
|
|
|
|
&.mw-halign-right {
|
|
/* @noflip */
|
|
margin: 0.6em 0 0.6em 1.4em;
|
|
/* @noflip */
|
|
clear: right;
|
|
/* @noflip */
|
|
float: right;
|
|
}
|
|
|
|
&.mw-halign-center {
|
|
margin: 0.6em auto 0.6em auto;
|
|
clear: none;
|
|
float: none;
|
|
}
|
|
}
|
|
}
|