MediaWiki:Common.css: Difference between revisions
Updated via ClaudeBot |
Updated via ClaudeBot |
||
| Line 1: | Line 1: | ||
/* CSS placed here will be applied to all skins */ | /* CSS placed here will be applied to all skins */ | ||
/* Hide Patreon CTA for logged-in users */ | /* Hide Patreon CTA for logged-in users - multiple selectors for compatibility */ | ||
body.mw-user-loggedin .patreon-cta { display: none !important; } | body.mw-user-loggedin .patreon-cta, | ||
body.logged-in .patreon-cta, | |||
.mw-user-loggedin .patreon-cta, | |||
.logged-in .patreon-cta { | |||
display: none !important; | |||
} | |||
Revision as of 01:50, 1 February 2026
/* CSS placed here will be applied to all skins */
/* Hide Patreon CTA for logged-in users - multiple selectors for compatibility */
body.mw-user-loggedin .patreon-cta,
body.logged-in .patreon-cta,
.mw-user-loggedin .patreon-cta,
.logged-in .patreon-cta {
display: none !important;
}