User:Bertux/global.css

From Meta, a Wikimedia project coordination wiki

Note: After publishing, you may have to bypass your browser's cache to see the changes.

  • Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
  • Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
  • Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Press Ctrl-F5.
/* Coloring dp-links */
.mw-disambig { color: #FF0066; background-color: #AFEEEE; }
a:visited{ color:#997744; }

/* Numbering headings */
body {
    counter-reset: h2counter;
}
h1 {
    counter-reset: h2counter;
}
h2:before {
    content: counter(h2counter) ".\0000a0\0000a0";
    counter-increment: h2counter;
}
h2 {
    counter-reset: h3counter;
}
#mw-toc-heading:before {
    content: none;
    counter-increment: none;
}
h3:before {
    content: counter(h2counter) "." counter(h3counter) ".\0000a0\0000a0";
    counter-increment: h3counter;
}
.vector-menu-heading:before {
    content: none;
    counter-increment: none;
}
#p-twinkle-label:before {
    content: none;
    counter-increment: none;
}

/* Show non fatal errors */
.mw-parser-output .cs1-hidden-error { display: inline; }

/* Quick hack to force the Search tab on [[Special:Contribs]] open. Credit: Volker E. (WMF) - [[Special:Permalink/19431311#Reverting the new "collapsed search interface" on Special:Contribs|Tech]] */ 
.mw-special-Contributions .oo-ui-fieldsetLayout-group.mw-collapsible-content { display: block !important; }

/* Diffs duidelijker */
.diff-deletedline {
	border-color: #FF00FF !important;
}
.diff-deletedline .diffchange {
	background: #C0FFFF !important;
}

.diff-addedline {
	border-color: #00B8E6 !important;
}

.diff-addedline .diffchange {
	background: #C0FFFF !important; /* Was 8DDBFF, bijna de kleur van geselecteerde tekst */
}

/* IN-TEXT CITATIONS */
/* Larger, bolder in-text citations */
p sup.reference a {
  font-weight: bold;
  font-size: 110% !important;
  color: #55C !important;
  background: #FFF !important;
}
hover sup.reference a {
  background: #FFFF00 !important;
  color: #1010FF !important;
}
hover sup.reference a:visited {
  color: #5A3696 !important;
}
hover sup.reference a:active {
  color: #FAA700 !important;
  background: #0808F8 !important;
}


/* Highlight clicked reference in blue to help navigation */
ol.references li:target,
sup.reference:target,
span.citation:target {
  background-color: #DEF;
}

/*show cite errors on all pages*/
.mw-parser-output .brokenref {
  display: inline;
}

/**
 * Extra links bovenaan paginageschiedenis
 * @source nl.wikipedia.org/wiki/Wikipedia:Scriptbibliotheek#Paginageschiedenis
 */
#history-toolbox { 
  display: block !important; 
}