Difference between revisions of "MediaWiki:Common.css"
(Created page with "→CSS placed here will be applied to all skins: <!-- No [history] tab for anonymous users --> <?php global $wgUser; if( $wgUser->isAnon() ) { ?> <style type="text/cs...") |
(No difference)
|
Revision as of 10:29, 15 August 2017
/* CSS placed here will be applied to all skins */
<!-- No [history] tab for anonymous users -->
<?php global $wgUser; if( $wgUser->isAnon() ) { ?>
<style type="text/css">
#ca-history { display:none!important; }
</style>
<?php } ?>