Note: After saving, you have to bypass your browser's cache to see the changes. Google Chrome, Firefox, Microsoft Edge and Safari: Hold down the ⇧ Shift key and click the Reload toolbar button. For details and instructions about other browsers, see Wikipedia:Bypass your cache.
/* Clean up some extra margin on watchlist */
.mw-rcfilters-enabled .mw-specialpage-summary {
	margin-top: 0;
}

.mw-rcfilters-ui-watchlistTopSectionWidget-separator {
    margin-top: 0;
    border-top: none;
}

/* and special:block has the worst clear since ooui */
.mw-special-Block .mw-htmlform {
	clear: none;
}

/* Make redirects in navboxes and personal-cleaning italic and red */
.navbox:not(.authority-control) .mw-redirect,
.sidebar .mw-redirect,
.iznoredirects .mw-redirect {
	font-style: italic;
	color: red;
}

/* Make redirects in watchlist italic */
.watchlistredir {
	font-style: italic;
}

/* Flip italic and straight (and color) in history views of section edits */
.autocomment {
	color: #585858;
	font-style: italic;
}

span.comment {
	font-style: inherit;
}

/* Show all Citation Style 1 error messages */
.citation-comment {
	display: inline !important;
}

/* remove after next deploy */
.cs1-maint {
	color: #085 !important;
}

/* Full width search results */
.mw-search-results.mw-search-results,
.mw-search-results-container.mw-search-results-container {
	max-width: none;
	width: 100%;
}

/* experimental how broken are navboxes at small resolution */
@media (max-width: 400px) {
	.navbox tr,
	.navbox th,
	.navbox td {
		display: block;
	}
}

/* documentation metadata first, not second */
.mw-parser-output div.documentation-container {
	display: flex;
	flex-direction: column;
	clear: both;
}

.mw-parser-output div.documentation {
	order: 2;
	margin-top: 0;
}

.mw-parser-output div.documentation-metadata {
	order: 1;
}

/* columns for some long lists of links */
.mw-editfooter-list,
#mw-whatlinkshere-list {
	column-width: 30em;
}