« Mediawiki et CSS » : différence entre les versions

De Banane Atomic
Aller à la navigationAller à la recherche
Aucun résumé des modifications
Ligne 5 : Ligne 5 :
= Add CSS for all the pages =
= Add CSS for all the pages =
Add CSS to the page [[MediaWiki:Common.css]].<br>
Add CSS to the page [[MediaWiki:Common.css]].<br>
Same but for a specific user [[MediaWiki:Special:MyPage/common.css]].
Same but for a specific user [[Special:MyPage/common.css]].


= Add CSS for mobile =
= Add CSS for mobile =

Version du 22 mai 2022 à 16:51

Links

Add CSS for all the pages

Add CSS to the page MediaWiki:Common.css.
Same but for a specific user Special:MyPage/common.css.

Add CSS for mobile

Add CSS to the page MediaWiki:Mobile.css

Modifier le style d'un skin

/usr/share/webapps/mediawiki/skins/MonSkin/SkinMonSkin.php
function setupSkinUserCss( OutputPage $out ) {
    ...

    // ajout des fichiers css
    $out->addStyle( $this->stylename . '/custom.css', 'screen' );
    $out->addStyle( $this->stylename . '/geshi.css', 'screen' );
}