MediaWiki talk:Common.css

From Holocron - Star Wars Combine
Jump to: navigation, search

(All of these fixes are merged together at the bottom of this comment for easy copy/paste.)


CSS Fix for unreadble black text on Article History pages:

#pagehistory li.selected {
	color: inherit;
}

CSS Fix for unreadable black text at the bottom of Edit page:

.mw-editinginterface, .mw-editform {
	color: inherit;
}

CSS Fix for white background header on Image pages:

#filetoc {
	background-color: inherit;
}

CSS fix for white background in table cells on Image / Admin pages:

table.wikitable > tr > th, table.wikitable > * > tr > th {
	background-color: inherit;
}

CSS Fix for external link color being bright easter-egg blue:

.mw-parser-output a.extiw, .mw-parser-output a.extiw:active {
	color: #55798B !important;
}


And here is all the above fixes lumped together for easy copy / paste:

#pagehistory li.selected {
	color: inherit;
}

.mw-editinginterface, .mw-editform {
	color: inherit;
}

#filetoc {
	background-color: inherit;
}

table.wikitable > tr > th, table.wikitable > * > tr > th {
	background-color: inherit;
}

.mw-parser-output a.extiw, .mw-parser-output a.extiw:active {
	color: #55798B !important;
}