Toggle menu
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

MediaWiki:Common.css: Difference between revisions

MediaWiki interface page
No edit summary
Tag: Manual revert
No edit summary
 
(One intermediate revision by the same user not shown)
Line 4: Line 4:
#ca-edit, .citizen-edit-button, .mw-editsection {
#ca-edit, .citizen-edit-button, .mw-editsection {
     display: none !important;
     display: none !important;
}
@media screen and (max-width: 768px) {
    /* Hides the edit button/tab in the menu area */
    .page-actions {
        display: none !important;
    }
}
}

Latest revision as of 23:05, 31 January 2026

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

/* Hide edit button for non-admins in Citizen skin */
#ca-edit, .citizen-edit-button, .mw-editsection {
    display: none !important;
}

@media screen and (max-width: 768px) {
    /* Hides the edit button/tab in the menu area */
    .page-actions { 
        display: none !important;
    }
}