Difference between revisions of "MediaWiki:Common.css"

From Serious Documentation
Jump to: navigation, search
(Created page with "CSS placed here will be applied to all skins: <!-- No [discussion] tab for users who can not edit --> <?php global $wgUser; if( !$wgUser->isAllowed('edit') ) { ?> ...")
 
Line 1: Line 1:
 
/* CSS placed here will be applied to all skins */
 
/* CSS placed here will be applied to all skins */
 
<!-- No [discussion] tab for users who can not edit -->
 
<?php global $wgUser; if( !$wgUser->isAllowed('edit') ) { ?>
 
      <style type="text/css">
 
        #ca-talk { display: none !important; }
 
      </style>
 
    <?php } ?>
 

Revision as of 05:45, 21 November 2012

/* CSS placed here will be applied to all skins */