Toggle menu
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
No edit summary
No edit summary
Line 1: Line 1:
/* FORCE buttons to show for logged-in users */
/* 1. Unhide the TOOLS MENU CONTAINER (Use block) */
#p-tb {
    display: block !important;
}
 
/* 2. Unhide SIDEBAR LINKS (Use list-item to keep bullets) */
#n-recentchanges,
#t-specialpages {
    display: list-item !important;
}
 
/* 3. Unhide TABS (Use block or list-item, block is safer for tabs) */
#ca-viewsource,  
#ca-viewsource,  
#ca-history,  
#ca-history,  
#ca-edit,
#ca-edit {
#n-recentchanges,
     display: block !important; /* Or inherit */
#t-specialpages {
     display: list-item !important;  
}
}

Revision as of 18:25, 14 January 2026

/* 1. Unhide the TOOLS MENU CONTAINER (Use block) */
#p-tb {
    display: block !important;
}

/* 2. Unhide SIDEBAR LINKS (Use list-item to keep bullets) */
#n-recentchanges, 
#t-specialpages {
    display: list-item !important;
}

/* 3. Unhide TABS (Use block or list-item, block is safer for tabs) */
#ca-viewsource, 
#ca-history, 
#ca-edit {
    display: block !important; /* Or inherit */
}