Difference between revisions of "Think.pedia:Common.css"
From think.pedia
(Created page with "#ca-talk { display:none!important; } #ca-history { display:none!important; }") |
|||
Line 1: | Line 1: | ||
− | #ca-talk { display:none!important; } | + | #ca-talk { display: none !important; } |
− | #ca-history { display:none!important; } | + | #ca-history { display: none !important; } |
+ | #ca-viewsource { display: none !important; } | ||
+ | |||
+ | <!-- No [view source] tab for anonymous users --> | ||
+ | <?php global $wgUser; if( $wgUser->isAnon() ) { ?> | ||
+ | <style type="text/css"> | ||
+ | #ca-viewsource { display: none !important; } | ||
+ | </style> | ||
+ | <?php } ?> | ||
+ | |||
+ | |||
+ | <!-- No [view source] tab for anonymous users --> | ||
+ | <?php global $wgUser; if( $wgUser->isAnon() ) { ?> | ||
+ | <style type="text/css"> | ||
+ | #ca-history { display: none !important; } | ||
+ | </style> | ||
+ | <?php } ?> |