More actions
fix to thumbnail background color |
Added updatedmarker text colour fix |
||
| (8 intermediate revisions by 2 users not shown) | |||
| Line 6: | Line 6: | ||
html .thumbimage { | html .thumbimage { | ||
background-color: inherit; /* was inheriting White from the default skin, which broke transparency in png's */ | background-color: inherit; /* was inheriting White from the default skin, which broke transparency in png's */ | ||
} | |||
/* Partner Sidebar Image */ | |||
div#mw-panel { | |||
padding-top: 0; | |||
} | |||
#mw-panel::before { | |||
content: url(/images/thumb/d/d1/PartnerBadge.png/160px-PartnerBadge.png) | |||
} | } | ||
| Line 89: | Line 98: | ||
.smw-editpage-help { background-color: inherit;} | .smw-editpage-help { background-color: inherit;} | ||
/* [[Special:RecentChanges]] background on the buttons "Namespace" and "Tags" are incorrectly coloured white. Thank you to [[User:HellRider Inferni]] for the report */ | |||
.oo-ui-draggableGroupElement > div:nth-child(2) { background-color: black; } | |||
/* On History Pages the update marker text should be coloured black. Thank you [[User:Evon R'al]] for the report and fix */ | |||
.updatedmarker { color: black; } | |||
| Line 120: | Line 131: | ||
font-style: normal; | font-style: normal; | ||
} | } | ||
/* Turns all links Gallente green */ | |||
/* | |||
.mw-parser-output a{ | |||
color: #accaa0; | |||
text-decoration: underline; | |||
} | |||
.mw-parser-output a:link { | |||
text-decoration: underline; | |||
color: #accaa0; | |||
} | |||
.mw-parser-output a:visited { | |||
text-decoration: underline; | |||
color: #accaa0; | |||
} | |||
.mw-parser-output a:hover { | |||
text-decoration: underline; | |||
color: #accaa0; | |||
} | |||
.mw-parser-output a:active { | |||
text-decoration: underline; | |||
color: #accaa0; | |||
} | |||
*/ | |||