MediaWiki:Common.css

From WickedGov, the Massachusetts civics wiki
Revision as of 21:10, 23 December 2024 by Luke (talk | contribs) (try THISSS)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
/* CSS placed here will be applied to all skins */

/* Remove bullets when there are multiple edit page warnings */
/* From en.wikipedia.org/wiki/MediaWiki:Common.css */
ul.permissions-errors {
	margin: 0;
}
ul.permissions-errors > li {
	list-style: none;
}

/* Suppressed content should be double-stricken in dark black */
.mw-history-suppressed {
	color:#202122 !important;
text-decoration:line-through !important;
	text-decoration-style:double !important;
}

/* Hide certain messages displayed only to certain groups */
.hidden-by-default {
	display:none;
}

/* Nowrap from [[wikipedia:MediaWiki:Common.css]] */
.nowrap,
.nowraplinks a {
	white-space: nowrap;
}

/* Remove duplicate DiscussionTools messages
This is caused by the jerry-rigged hook
to display protection indicators:
[[MediaWiki:Site-protection-indicators]] */
div.ext-discussiontools-emptystate:first-child:not(:only-of-type) {
	display: none;
}