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

De Banane Atomic
Aller à la navigationAller à la recherche
Aucun résumé des modifications
 
(Une version intermédiaire par le même utilisateur non affichée)
Ligne 9 : Ligne 9 :
Add CSS to the page [[MediaWiki:Mobile.css]]
Add CSS to the page [[MediaWiki:Mobile.css]]


= Modifier le style d'un skin =
= Change the CSS skin =
<filebox fn=/usr/share/webapps/mediawiki/skins/MonSkin/SkinMonSkin.php lang=php>
<filebox fn=/usr/share/webapps/mediawiki/skins/MonSkin/SkinMonSkin.php lang=php>
function setupSkinUserCss( OutputPage $out ) {
function setupSkinUserCss( OutputPage $out ) {

Dernière version du 22 mai 2022 à 16:55

Links

Add CSS for all the pages

Add CSS to the page MediaWiki:Common.css.

Add CSS for mobile

Add CSS to the page MediaWiki:Mobile.css

Change the CSS 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' );
}

Add CSS for a specific user