« Mediawiki et CSS » : différence entre les versions
De Banane Atomic
Aller à la navigationAller à la recherche
m (Nicolas a déplacé la page MediaWiki et CSS vers Mediawiki et CSS) |
|||
(5 versions intermédiaires par le même utilisateur non affichées) | |||
Ligne 1 : | Ligne 1 : | ||
= | [[Category:MediaWiki]] | ||
= Links = | |||
* [https://www.mediawiki.org/wiki/Manual:CSS Manual CSS] | |||
= 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 = | ||
<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 ) { | ||
Ligne 13 : | Ligne 20 : | ||
</filebox> | </filebox> | ||
[[ | = Add CSS for a specific user = | ||
* for all the pages → [[Special:MyPage/common.css]] | |||
* for a specific style → [[Special:MyPage/monobook.css]] |
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
- for all the pages → Special:MyPage/common.css
- for a specific style → Special:MyPage/monobook.css