Toggle menu
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

MediaWiki:Uniwiki.css: Difference between revisions

MediaWiki interface page
Rayanth (talk | contribs)
because of COURSE you'd have to specially style the highlight behind a citation link...
Arin Mara (talk | contribs)
Added updatedmarker text colour fix
 
(18 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 78: Line 95:
/* because of COURSE you'd have to specially style the highlight behind a citation link... */
/* because of COURSE you'd have to specially style the highlight behind a citation link... */
ol.references li:target { background-color: #ffa50040; }
ol.references li:target { background-color: #ffa50040; }
.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 */
/* Red Dot Meme */
/*
body a:hover { cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='16' width='16'%3E%3Ccircle cx='8' cy='8' r='8' fill='red' /%3E%3C/svg%3E "), pointer; }
*/
/*AF2020*/
/*
@font-face {
    font-family: '';
    src: ;
    font-weight: normal;
    font-style: normal;
}
*/
@font-face {
    font-family: 'Triglavian-Completenormal';
    src: url('/skins/UniWiki/font/trig/Triglavian-Completenormal.eot');
    src: url('/skins/UniWiki/font/trig/Triglavian-Completenormal.eot?#iefix') format('embedded-opentype'), url('/skins/UniWiki/font/trig/Triglavian-Completenormal.svg#Triglavian-Completenormal') format('svg'), url('/skins/UniWiki/font/trig/Triglavian-Completenormal.ttf') format('truetype'), url('/skins/UniWiki/font/trig/Triglavian-Completenormal.woff') format('woff'), url('/skins/UniWiki/font/trig/Triglavian-Completenormal.woff2') format('woff2');
    font-weight: 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;
}
*/