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
No edit summary
 
Line 8: Line 8:
@media screen and (max-width: 768px) {
@media screen and (max-width: 768px) {
     /* Hides the edit button/tab in the menu area */
     /* Hides the edit button/tab in the menu area */
    #ca-edit,
     .page-actions {  
     .citizen-tab-edit,
    .mobile-edit-button {  
         display: none !important;
         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;
    }
}