Difference between revisions of "MediaWiki:Common.css"

From RobolaboWiki
Jump to: navigation, search
(Created page with "CSS placed here will be applied to all skins: #ca-watch { display: none !important; }")
 
 
(6 intermediate revisions by the same user not shown)
Line 1: Line 1:
 
/* CSS placed here will be applied to all skins */
 
/* CSS placed here will be applied to all skins */
#ca-watch { display: none !important; }
+
#ca-talk { display:none!important; }
 +
#ca-history { display:none!important; }
 +
#ca-viewsource { display:none!important; }
 +
 
 +
<?php global $wgUser; if( !$wgUser->isAllowed('edit') ) { ?>
 +
  <style type="text/css">
 +
    #p-tb { display: none !important; }
 +
  </style>
 +
<?php } ?>

Latest revision as of 00:41, 14 November 2015

/* CSS placed here will be applied to all skins */
#ca-talk { display:none!important; }
#ca-history { display:none!important; }
#ca-viewsource { display:none!important; }

<?php global $wgUser; if( !$wgUser->isAllowed('edit') ) { ?>
  <style type="text/css">
    #p-tb { display: none !important; }
  </style> 
<?php } ?>