More actions
No edit summary |
Added updatedmarker text colour fix |
||
| (11 intermediate revisions by 2 users not shown) | |||
| Line 1: | Line 1: | ||
/* CSS placed here will affect users of the UniWiki skin */ | /* CSS placed here will affect users of the UniWiki skin */ | ||
/* === Most changes in this file are fixes to issues discovered after UniWiki SKIN 1.1 was deployed. It additionally contains some changes necessary for various events the Wiki has run, at the bottom. === */ | |||
/* ==General Fixes == */ | |||
html .thumbimage { | |||
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) | |||
} | |||
/* changes that affect the Editor */ | /* changes that affect the Editor */ | ||
.wikiEditor-ui-toolbar { | .wikiEditor-ui-toolbar { | ||
background-color: inherit; | background-color: inherit; | ||
| Line 40: | Line 56: | ||
/* image gallery text was black on black */ | /* image gallery text was black on black */ | ||
.gallerytext p { color: inherit; } | .gallerytext p { color: inherit; } | ||
li.gallerybox { display: inline-block; } | |||
/* toccolours sets background color of 'table of contents' panes such as on https://wiki.eveuniversity.org/Template:SkillQueue | /* toccolours sets background color of 'table of contents' panes such as on https://wiki.eveuniversity.org/Template:SkillQueue | ||
| Line 80: | Line 97: | ||
.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; } | |||
/* Changes that really irritate people */ | /* Changes that really irritate people */ | ||
| Line 89: | Line 116: | ||
/*AF2020*/ | /*AF2020*/ | ||
/* | |||
@font-face { | @font-face { | ||
font-family: ''; | font-family: ''; | ||
| Line 96: | Line 123: | ||
font-style: normal; | font-style: normal; | ||
} | } | ||
*/ | |||
@font-face { | @font-face { | ||
font-family: 'Triglavian-Completenormal'; | font-family: 'Triglavian-Completenormal'; | ||
| Line 104: | 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; | |||
} | |||
*/ | |||