Difference between revisions of "MediaWiki:Common.css"
From Dan Shearer CV
Tag: Manual revert |
|||
Line 1: | Line 1: | ||
/* CSS placed here will be applied to all skins */ |
/* CSS placed here will be applied to all skins */ |
||
+ | /* "!important" in the following means "not anonymous users". Like you, noseypoker! */ |
||
/* Do not display Discussion/talk tab */ |
/* Do not display Discussion/talk tab */ |
||
#ca-talk { display:none!important; } |
#ca-talk { display:none!important; } |
||
− | |||
/* Do not display Page tab, which has Delete, Move and Protect. */ |
/* Do not display Page tab, which has Delete, Move and Protect. */ |
||
#p-cactions { display:none!important; } |
#p-cactions { display:none!important; } |
||
+ | /* User page tab (the Page tab on personal user pages) */ |
||
+ | #ca-nstab-user { display:none!important; } |
||
+ | /* View history/History tab */ |
||
+ | #ca-history { display:none!important; } |
||
+ | /*the Watch tab for adding the page to the watchlist */ |
||
+ | #ca-watch { display:none!important; } |
||
+ | /* no view source tab*/ |
||
+ | #ca-viewsource { display:none!important; } |
||
+ | /* */ |
||
+ | /* */ |
||
+ | /* */ |
||
+ | |||
+ | |||
/* For CategoryTree, do not display JQuery message of "None found" every time it gets to a leaf node */ |
/* For CategoryTree, do not display JQuery message of "None found" every time it gets to a leaf node */ |
Revision as of 10:38, 12 November 2021
/* CSS placed here will be applied to all skins */ /* "!important" in the following means "not anonymous users". Like you, noseypoker! */ /* Do not display Discussion/talk tab */ #ca-talk { display:none!important; } /* Do not display Page tab, which has Delete, Move and Protect. */ #p-cactions { display:none!important; } /* User page tab (the Page tab on personal user pages) */ #ca-nstab-user { display:none!important; } /* View history/History tab */ #ca-history { display:none!important; } /*the Watch tab for adding the page to the watchlist */ #ca-watch { display:none!important; } /* no view source tab*/ #ca-viewsource { display:none!important; } /* */ /* */ /* */ /* For CategoryTree, do not display JQuery message of "None found" every time it gets to a leaf node */ .CategoryTreeNotice{display:none;}