Toggle menu
9
0
4
180
sampsphere.com
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

MediaWiki:Group-user.css: Difference between revisions

MediaWiki interface page
Created page with "→‎CSS placed here will affect registered users only: →‎Hide special pages from anonymous users: @media screen { →‎Ensure that this applies only to users who are not logged in: body:not(.mw-user-login) .specialpages, body:not(.mw-user-login) .specialpage { display: none; →‎Hide the special pages: } }"
 
No edit summary
 
Line 1: Line 1:
/* CSS placed here will affect registered users only */
/* CSS placed here will affect registered users only */
/* Hide special pages from anonymous users */
@media screen {
    /* Ensure that this applies only to users who are not logged in */
    body:not(.mw-user-login) .specialpages,
    body:not(.mw-user-login) .specialpage {
        display: none; /* Hide the special pages*/
    }
}

Latest revision as of 15:26, 20 December 2024

/* CSS placed here will affect registered users only */