Difference between revisions of "MediaWiki talk:Common.css"

From Holocron - Star Wars Combine
Jump to: navigation, search
(Created page with "Adding this tidbit should fix the tables with white backgrounds and black text in various boxes: table, table.wikitable, div.thumbinner, img.thumbimage { background-color: #...")
 
(Additional CSS fixes)
 
Line 1: Line 1:
Adding this tidbit should fix the tables with white backgrounds and black text in various boxes:
+
(All of these fixes are merged together at the bottom of this comment for easy copy/paste.)
  
table, table.wikitable, div.thumbinner, img.thumbimage { background-color: #001F33; color: #cccccc; }
 
  
-- [[User:Rupert Havok|Rupert Havok]] ([[User talk:Rupert Havok|talk]])
+
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;
 +
}

Latest revision as of 18:27, 25 May 2018

(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;
}