MediaWiki:Common.css: Difference between revisions
Appearance
Created page with "→CSS placed here will be applied to all skins: →Hide the account creation statistics box: .mw-createacct-benefits, .mw-createacct-benefit-container, .mw-createacct-benefit-head, .mw-createacct-benefit-body { display: none !important; }" |
No edit summary |
||
| Line 1: | Line 1: | ||
/* CSS placed here will be applied to all skins */ | /* CSS placed here will be applied to all skins */ | ||
/* | /* Broad hide for create account stats (covers many skins) */ | ||
.mw-createacct-benefits, | .mw-createacct-benefits, | ||
.createacct-benefits, | |||
.mw-createacct-benefit-container, | .mw-createacct-benefit-container, | ||
.mw-createacct-benefit-head, | .mw-createacct-benefit-head, | ||
.mw-createacct-benefit-body { | .mw-createacct-benefit-body, | ||
.mw-createaccount-benefits, | |||
.createaccount-benefits, | |||
#createacct-benefits, | |||
div[class*="createacct"], | |||
div[class*="createaccount"] { | |||
display: none !important; | display: none !important; | ||
visibility: hidden !important; | |||
height: 0 !important; | |||
margin: 0 !important; | |||
padding: 0 !important; | |||
overflow: hidden !important; | |||
} | } | ||
Revision as of 18:40, 17 January 2026
/* CSS placed here will be applied to all skins */
/* Broad hide for create account stats (covers many skins) */
.mw-createacct-benefits,
.createacct-benefits,
.mw-createacct-benefit-container,
.mw-createacct-benefit-head,
.mw-createacct-benefit-body,
.mw-createaccount-benefits,
.createaccount-benefits,
#createacct-benefits,
div[class*="createacct"],
div[class*="createaccount"] {
display: none !important;
visibility: hidden !important;
height: 0 !important;
margin: 0 !important;
padding: 0 !important;
overflow: hidden !important;
}