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 */ | ||
.page-actions { | |||
. | |||
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;
}
}