Note: After publishing, you may have to bypass your browser's cache to see the changes.
- Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
- Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
- Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5.
/* All CSS here will be loaded for users of the MinervaNeue skin */
/* Hide edit, history, and talk buttons for logged-out users */
body:not(.mw-user-loggedin) .minerva-page-actions-menu,
body:not(.mw-user-loggedin) .page-actions-menu,
body:not(.mw-user-loggedin) .mw-ui-icon-element,
body:not(.mw-user-loggedin) .page-actions-overflow {
display: none !important;
}
/* Hide sidebar and user menu */
body:not(.mw-user-loggedin) .minerva-user-menu,
body:not(.mw-user-loggedin) .minerva-drawer {
display: none !important;
}
/* Hide other header icons (watch, random, etc.) */
body:not(.mw-user-loggedin) .header-action {
display: none !important;
}
/* Keep only login button visible */
body:not(.mw-user-loggedin) #pt-login {
display: inline-block !important;
background: #2a4b8d;
color: #fff;
padding: 6px 12px;
border-radius: 6px;
font-weight: 600;
margin-right: 0.5rem;
text-decoration: none;
}