User:Firefly/common.css

Source: Wikipedia, the free encyclopedia.
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.
/* BETA: [[MOS:LISTGAP]] / [[WP:*:]] violation highlighter.

DISCLAIMER: MW markup and HTML are infinitely complex, and there are valid use
cases for all of these, especially `ol + ol`. Correct flagged markup at your
peril. */

/* List gaps */
.mw-parser-output dl + dl, .mw-parser-output ul + ul, .mw-parser-output ol + ol {
	border-top: 1em solid pink;
	border-top: 1em solid rgba(255,192,203,0.5);
}
/* The common mistake of
* Foo
:* Bar / :: Bar
(At any level of nesting) */
.mw-parser-output ul + dl > dd > ul, .mw-parser-output ul + dl > dd > dl {
	border-left: 1em solid pink;
	border-left: 1em solid rgba(255,192,203,0.5);
}

/* Hide block links and pipe - they be scary

Turned off for now - too many edge cases
.mw-usertoollinks {
	font-size: 0;
}
.mw-usertoollinks>span, .mw-usertoollinks>a, .mw-changeslist-links::before, .mw-changeslist-links::after{
	font-size: 12.7px;
}

.mw-usertoollinks span:first-child:not(:last-child)::after{
	content: ' ';
	font-size: 12.7px;
}

.mw-usertoollinks span:last-child:not(:first-child){
	display: none
}*/