Constant Noble:Dixwell leftovers/Stylesheets

From Constant Noble
Jump to navigation Jump to search

Common.css

/* CSS placed here will be applied to all PC-compatible skins */

/* Common.css and Mobile.css are NOT compatible with each other. Details in this 2012 thread:
https://phabricator.wikimedia.org/T36325 */
/* Workaround on this wiki: [[MediaWiki:Universal.css]] */

/* Default decorative font used on this wiki: Cooper Black Italic */
/* Works on Chrome and iOS Safari */
@font-face {font-family: "Cooper Black Italic";
        font-style: normal;
        src: url(https://dl.dropbox.com/s/ol5rpguycwsjluo/coopblia.ttf)}
/* IE fix via google.com/webfonts: Oleo Script Swash Caps */
@import url(http://fonts.googleapis.com/css?family=Oleo+Script+Swash+Caps:400,700);
/* Cursive font for [[Template:Sticky]] */
@import url(http://fonts.googleapis.com/css?family=Reenie+Beanie);
/* Cursive font for [[Project:Draft Central/Scratchpad]] */
@import url(http://fonts.googleapis.com/css?family=Just+Another+Hand);

/* Basics */
h1, h2, h3, h4, h5, span.mw-headline, label, label small, legend,
input#wpSave, input#wpPreview, input#wpDiff,
.mw-summary-preview, td.mw-label, .wikitable th {font-family: 'Cooper Black Italic', 'Oleo Script Swash Caps' !important}

/* Infobox classes */
 /* [[Template:Character]] */
.character {background-color: #a99274}
 /* [[Template:Place]] */
.place {background-color: #cddeff}
 /* [[Template:Species]] */
.species {background-color: #d3d3a4}
 /* [[Template:Track]] */
.track.single {background-color: #f0e68c}
.track.song {background-color: #e6e8fa}

/* Size of letters in CSS source used here */
.css.source-css {font-size: 1.2em}

/* Redirect pages */
span.redirectText {font-size: 150%}

/* [[Template:Navbox]] */
.navbox-center {text-align: center}

/* Page type icons */
div.top-icon {position: absolute; top: -35px; right: 10px; margin-right: -10px; display: block !important}

/* [[Template:Hatnote]] */
.dablink {padding-left: 1.6em; margin-bottom: 0.5em}

/* Summary text preview */
span.comment {font-family: Arial, serif}

/* [[Template:Main Page]] and translations */
table.mainpage a.new {color: #f90} /* Unvisited red links */
table.mainpage a.new:visited {color: #f5d099} /* Visited red links */
table.mainpage a {color: #fc0} /* Unvisited page links */
table.mainpage a:visited {color: #a0a83c} /* Visited page links */
div#content table.mainpage a.extiw,
div#content table.mainpage a.external {color: #b2e6ff} /* External links */

/* [[Project:Draft Central]] */
div.dc-header {text-align: center; font-size: 150%; line-height: 200%; background-color: #674732; color: white; border-radius: 5px}
div.dc-body-ext {text-align: center; width: 98%; display: block; border-collapse: collapse; margin: auto; margin-bottom: 10px;
     border-top: -10px; border: 2px solid #aaa; border-top: 0; background-color: white; border-radius: 0 0 5px 5px}
div.dc-body-int {padding: 2em 1em}
div.dc-body-section {text-align: center; font-size: 150%; line-height: 200%; background-color: #ebf2f5; color: #58a4bd; border-radius: 5px}

/* Notepaper effect on [[Project:Draft Central/Scratchpad]] */
/* Source: http://net.tutsplus.com/tutorials/html-css-techniques/lets-create-paper-with-css/ */
div.scratchpad {
	font-family: 'Just Another Hand' !important;
	width: 700px;
	position: relative;
	margin: auto;
	padding: 15px 0;
	color: #212121;
	
	-webkit-border-bottom-left-radius: 20px 500px;
	-webkit-border-bottom-right-radius: 500px 30px;
	-webkit-border-top-right-radius: 5px 100px;
	
	-moz-border-radius-bottomleft: 20px 500px;
	-moz-border-radius-bottomright: 500px 30px;
	-moz-border-radius-topright: 5px 100px;	
	
	border-radius-bottomleft: 20px 500px;
	border-radius-bottomright: 500px 30px;
	border-radius-topright: 5px 100px;
	
	background: #fcf59b;
	background: 
		-webkit-gradient(
			linear,
			left top, left bottom,
			from(#81cbbc),
			color-stop(2%, #fcf59b)
		);
		
	background: 
		-moz-repeating-linear-gradient(
			top,
			#fcf59b,
			#fcf59b 38px,
			#81cbbc 40px
		);
		
	background: 
		repeating-linear-gradient(
			top,
			#fcf59b,
			#fcf59b 38px,
			#81cbbc 40px
		);		
		
	-webkit-background-size: 100% 40px;
	
	-webkit-box-shadow: 0 2px 10px 1px rgba(0,0,0,.2); 
	-moz-box-shadow: 0 2px 10px 1px rgba(0,0,0,.2); 
	box-shadow: 0 2px 10px 1px rgba(0,0,0,.2); 
	
}

div.scratchpad p {
	padding: 0 100px;
	line-height: 40px;
	margin-bottom: 40px;
	font-size: 30px;
}

/* [[Template:Sticky]]
 *
 * Using CSS3 ideas from http://net.tutsplus.com/tutorials/html-css-techniques/create-a-sticky-note-effect-in-5-easy-steps-with-css3-and-html5/ 
 */
/* Borrowed from: */
/* http://teflpedia.com/MediaWiki:Common.css */
/* Licence: CC-BY-SA 3.0 */

div.sticky {
      color: #000;
      background: #ffc;
      float: right;
      margin: 0.5em 5em 2em 0.5em;
      padding: 1em;
      border: 0;
      font-size: 100%;
      font-family:arial,sans-serif;
      font-weight: normal;
      text-decoration: none;
      display: block;
      height: 20em;
      width: 20em;
      overflow: auto;
      -moz-box-shadow:    5px 5px 7px rgba(33,33,33,1);
      -webkit-box-shadow: 5px 5px 7px rgba(33,33,33,.7);
      box-shadow:         5px 5px 7px rgba(33,33,33,.7);
      -moz-transition:       -moz-transform .15s linear;
      -o-transition:           -o-transform .15s linear;
      -webkit-transition: -webkit-transform .15s linear;
      font-family: 'Reenie Beanie' !important;
      -webkit-transform: rotate(-6deg);
      -o-transform:      rotate(-6deg);
      -moz-transform:    rotate(-6deg);
}

div.sticky:hover,
div.sticky:focus {
      box-shadow:         10px 10px 7px rgba(0,0,0,.7);
      -moz-box-shadow:    10px 10px 7px rgba(0,0,0,.7);
      -webkit-box-shadow: 10px 10px 7px rgba(0,0,0,.7);
      -webkit-transform: scale(1.5);
      -moz-transform:    scale(1.5);
      -o-transform:      scale(1.5);
      position: relative;
      z-index: 5;
}

/* System message index */
.message-index a {background: none !important}

/* When visitors try to edit a page with a protected title */
/* Example: http://dixwell.referata.com/w/index.php?title=Like_this_one&action=edit */
ul.permissions-errors {list-style: none}
ul.permissions-errors li {margin-bottom: 0.8em}

/* When attempting to move a page to its current title at [[Special:MovePage]] */
.mw-special-Movepage div.error ul {list-style: none}

/* On semantic table in [[Project:Characters]] */
/* Special case where slashes MUST be used to escape parentheses, or else it will NOT work. Details: */
/* http://stackoverflow.com/questions/448981/what-characters-are-valid-in-css-class-selectors */
td.Species-name-\(Latin\) {font-style: italic}

/* Bootstrap skin */
a.brand {font-family: 'Cooper Black Italic', 'Oleo Script Swash Caps' !important}

/* Cologne Blue skin */
span#sitetitle {font-family: 'Cooper Black Italic', 'Oleo Script Swash Caps' !important}

/* External link icon fixes in default Vector skin */
  /* HTTPS secure padlock */
.skin-vector div#content a[href ^="https://"].external,
.skin-vector div#content a[href ^="https://"], /* [[Special:ServiceLevel]] */
.link-https {
    background: url(http://upload.wikimedia.org/wikipedia/commons/thumb/6/62/Locked.svg/10px-Locked.svg.png) center right no-repeat;
    /* @noflip */
    padding-right: 11px}

  /* E-mail envelope */
.skin-vector div#content a[href ^="mailto"].external,
.skin-vector div#content a[href ^="mailto"], /* [[Project:Tumblr Showcase]] */
.link-https {
    background: url(http://upload.wikimedia.org/wikipedia/commons/thumb/5/5f/Email_Silk.svg/15px-Email_Silk.svg.png) center right no-repeat;
    /* @noflip */
    padding-right: 18px}

  /* PDF icon */
.skin-vector div#content a[href$=".pdf"].external,
.skin-vector div#content a[href*=".pdf?"].external,
.skin-vector div#content a[href*=".pdf#"].external,
.skin-vector div#content a[href$=".PDF"].external,
.skin-vector div#content a[href*=".PDF?"].external,
.skin-vector div#content a[href*=".PDF#"].external,
div#mw_content a[href$=".pdf"].external,
div#mw_content a[href*=".pdf?"].external,
div#mw_content a[href*=".pdf#"].external,
div#mw_content a[href$=".PDF"].external,
div#mw_content a[href*=".PDF?"].external,
div#mw_content a[href*=".PDF#"].external {
    background: url("https://upload.wikimedia.org/wikipedia/commons/thumb/5/5f/Document-pdf.svg/15px-Document-pdf.svg.png") center right no-repeat;
    /* @noflip */
    padding-right: 18px}

  /* OGG files */
.skin-vector div#content a[href$=".ogg"].external,
.skin-vector div#mw_content a[href$=".ogg"].external,
.skin-vector div#content a[href$=".OGG"].external,
.skin-vector div#mw_content a[href$=".OGG"].external {
    background: url("https://upload.wikimedia.org/wikipedia/commons/thumb/f/fc/Ogg_Logo.png/20px-Ogg_Logo.png") center right no-repeat;
    /* @noflip */
    padding-right: 25px}

  /* Music/sound files: MP3 */
.skin-vector div#content a[href$=".mp3"].external,
.skin-vector div#mw_content a[href$=".mp3"].external {
    background: url("https://upload.wikimedia.org/wikipedia/commons/thumb/c/cb/Note_orange.svg/15px-Note_orange.svg.png") center right no-repeat;
    /* @noflip */
    padding-right: 18px}

  /* Video files: OGM/AVI/MPG/MP4 */
.skin-vector div#content a[href$=".ogm"].external,
.skin-vector div#mw_content a[href$=".ogm"].external,
.skin-vector div#content a[href$=".avi"].external,
.skin-vector div#mw_content a[href$=".avi"].external,
.skin-vector div#content a[href$=".mpg"].external,
.skin-vector div#mw_content a[href$=".mpg"].external,
.skin-vector div#content a[href$=".mpeg"].external,
.skin-vector div#mw_content a[href$=".mpeg"].external,
.skin-vector div#content a[href$=".mp4"].external,
.skin-vector div#mw_content a[href$=".mp4"].external {
    background: url("https://upload.wikimedia.org/wikipedia/commons/thumb/e/e7/Video-x-generic.svg/15px-Video-x-generic.svg.png") center right no-repeat;
    /* @noflip */
    padding-right: 18px}

  /* YouTube links */
div#content a[href*='youtube.com'].external {
    background: url("https://upload.wikimedia.org/wikipedia/commons/thumb/e/e7/YouTubeArrow3.png/15px-YouTubeArrow3.png") center right no-repeat;
    /* @noflip */
    padding-right: 18px}

/* Semantic data warning sign */
div#content span.smwtticon.warning {
    background: url(http://upload.wikimedia.org/wikipedia/commons/thumb/9/92/Caution_sign_used_on_roads_pn.svg/15px-Caution_sign_used_on_roads_pn.svg.png) no-repeat bottom;
    /* @noflip */
    padding-right: 21px}

/* Firefox fix, since it really doesn't recognise web fonts; see
http://www.cssbakery.com/2010/07/fixing-firefox-font-face-cross-domain_25.html for details */
/* Borrowed partly from http://www.webmonkey.com/2010/02/browser-specific_css_hacks/#Firefox */
@-moz-document url-prefix() {
h1, h2, h3, h4, h5, span.mw-headline, label, label small, legend,
input#wpSave, input#wpPreview, input#wpDiff,
.mw-summary-preview, td.mw-label, .wikitable th,
.ib-top, .ib-section,
a.brand, span#sitetitle {font-family: Georgia, Arial, sans-serif !important; font-weight: bold}
}

Common.js

/* Any JavaScript here will be loaded for all PC users on every page load. */
 
/* {{DISPLAYTITLE:x}} hack via deadisland.wikia.com (via dev.wikia.com); used on track pages */
/* Source: http://deadisland.wikia.com/wiki/User:Jgjake2/js/DISPLAYTITLE.js */
function fixPageName(){
	var newPageTitle = getElementsByClassName(document, 'span', 'changePageTitle')[0]; // Find the span with the new title
	if(newPageTitle == null) return; // If not found exit
	var oldPageTitle = getElementsByClassName(document, 'h1', 'firstHeading')[0]; //Find the page's title
	if(oldPageTitle == null) return; // If not found exit
	oldPageTitle.innerHTML = newPageTitle.innerHTML; // Set the Title
}
addOnloadHook(fixPageName);
 
/* Workaround for both PC and mobile versions */
importStylesheet('MediaWiki:Universal.css');
 
/* Namespace colours and tabs */
importStylesheet('MediaWiki:Namespaces.css');
 
/* [[Template:Navbox]] */
importStylesheet('MediaWiki:Navbox.css');
importScript('MediaWiki:Navbox.js');
 
/* Navbox alternative */
importScript('MediaWiki:Collapse.js');
 
/* Arrows & Boxes by Dennis Treder */
/* Documentation: http://www.headjump.de/article/arrows-and-boxes */
/* Previewer: http://www.headjump.de/article/arrows-and-boxes-editor */
/* Suggested in this Stack Overflow question: */
/* http://stackoverflow.com/questions/10429947/javascript-library-family-tree-flowchart */
/* For use with family trees (i.e. Dixwell, Radžiūnas, Murphy, Karimi, et al.) ONLY – thank you! */
importStylesheetURI('http://www.headjump.de/stylesheets/arrowsandboxes.css');
importScriptURI('http://www.headjump.de/javascripts/jquery_wz_jsgraphics.js');
importScriptURI('http://www.headjump.de/javascripts/arrowsandboxes.js');

Mobile.js

/* Any JavaScript here will be loaded for users using the mobile site */
 
/* Common.js and Mobile.js are NOT compatible with each other. See "Jdlrobson's" reply in this MW discussion from March 2013:
https://www.mediawiki.org/wiki/Thread:Extension_talk:MobileFrontend/Is_JavaScript_filtered%3F */
 
/* Workaround for both PC and mobile versions */
mw.loader.load( 'http://dixwell.referata.com/w/index.php?title=MediaWiki:Universal.css&action=raw&ctype=text/css', 'text/css' );
 
/* Navbox alternative */
mw.loader.load( 'http://dixwell.referata.com/w/index.php?title=MediaWiki:Collapse.js&action=raw&ctype=text/javascript' );
 
/* Arrows & Boxes by Dennis Treder */
/* Documentation: http://www.headjump.de/article/arrows-and-boxes */
/* Previewer: http://www.headjump.de/article/arrows-and-boxes-editor */
/* Suggested in this Stack Overflow question: */
/* http://stackoverflow.com/questions/10429947/javascript-library-family-tree-flowchart */
/* For use with family trees (i.e. Dixwell, Radžiūnas, Murphy, Karimi, et al.) ONLY – thank you! */
mw.loader.load('http://www.headjump.de/stylesheets/arrowsandboxes.css', 'text/css');
mw.loader.load('http://www.headjump.de/javascripts/jquery_wz_jsgraphics.js');
mw.loader.load('http://www.headjump.de/javascripts/arrowsandboxes.js');

Namespaces.css

/* On [[MediaWiki:Common.js]]: */
/* importStylesheet('MediaWiki:Namespaces.css'); */

/* Namespace colours */
/* More information: https://www.mediawiki.org/wiki/Manual:Using_custom_namespaces */
/* Even numbers represent subject namespace; odd, talk namespace */
.ns--1 #content {background-color: #f6f6f6} /* Special pages */
.ns-2 #content, .ns-3 #content     {background-color: #f9f9f9} /* User pages */
.ns-4 #content, .ns-5 #content     {background-color: #f3f9ff} /* Project pages; after WP standards */
.ns-6 #content, .ns-7 #content     {background-color: #f4f4f4} /* Images and media files */
.ns-8 #content, .ns-9 #content     {background-color: #f2f2f2} /* MediaWiki (System) messages */
.ns-10 #content, .ns-11 #content   {background-color: #fcf9f9} /* Templates */
.ns-12 #content, .ns-13 #content   {background-color: #f3f9ff} /* Help pages */
.ns-14 #content, .ns-15 #content   {background-color: #f5f5ff} /* Categories */
.ns-102 #content, .ns-103 #content {background-color: #f6fff6} /* Property description pages */
.ns-106 #content, .ns-107 #content {background-color: #f6fff6} /* Forms */
.ns-108 #content, .ns-109 #content {background-color: #f5f5ff} /* Concepts */



/* Namespace tabs — Vector */

/* Special pages */
.vectorTabs li#ca-nstab-special.selected a {background-color: #f6f6f6; border-top: 1px solid #a7d7f9; border-radius: 10px 10px 0 0}

/* User pages */
.vectorTabs li#ca-nstab-user.selected a,
.ns-2   .vectorTabs li#ca-view.selected a,
.ns-2   .vectorTabs li#ca-edit.selected a,
.ns-2   .vectorTabs li#ca-history.selected a,
.ns-3   .vectorTabs li#ca-talk.selected a,
.ns-3   .vectorTabs li#ca-view.selected a,
.ns-3   .vectorTabs li#ca-edit.selected a,
.ns-3   .vectorTabs li#ca-history.selected a {background-color: #f9f9f9; border-top: 1px solid #a7d7f9; border-radius: 10px 10px 0 0}

/* Project pages */
.vectorTabs li#ca-nstab-project.selected a,
.ns-4   .vectorTabs li#ca-view.selected a,
.ns-4   .vectorTabs li#ca-viewsource.selected a, /* When anons try to edit resources listed on {{Footer pages}} */
.ns-4   .vectorTabs li#ca-edit.selected a,
.ns-4   .vectorTabs li#ca-form_edit.selected a, /* When editing through forms */
.ns-4   .vectorTabs li#ca-history.selected a,
.ns-5   .vectorTabs li#ca-talk.selected a,
.ns-5   .vectorTabs li#ca-view.selected a,
.ns-5   .vectorTabs li#ca-edit.selected a,
.ns-5   .vectorTabs li#ca-history.selected a {background-color: #f3f9ff; border-top: 1px solid #a7d7f9; border-radius: 10px 10px 0 0}

/* Images and media files */
.vectorTabs li#ca-nstab-image.selected a,
.ns-6   .vectorTabs li#ca-view.selected a,
.ns-6   .vectorTabs li#ca-edit.selected a,
.ns-6   .vectorTabs li#ca-history.selected a,
.ns-7   .vectorTabs li#ca-talk.selected a,
.ns-7   .vectorTabs li#ca-view.selected a,
.ns-7   .vectorTabs li#ca-edit.selected a,
.ns-7   .vectorTabs li#ca-history.selected a {background-color: #f4f4f4; border-top: 1px solid #a7d7f9; border-radius: 10px 10px 0 0}

/* MediaWiki (System) messages */
.vectorTabs li#ca-nstab-mediawiki.selected a,
.ns-8   .vectorTabs li#ca-view.selected a,
.ns-8   .vectorTabs li#ca-viewsource.selected a, /* Default editing view; admins don't see this */
.ns-8   .vectorTabs li#ca-edit.selected a,
.ns-8   .vectorTabs li#ca-history.selected a,
.ns-9   .vectorTabs li#ca-talk.selected a,
.ns-9   .vectorTabs li#ca-view.selected a,
.ns-9   .vectorTabs li#ca-edit.selected a,
.ns-9   .vectorTabs li#ca-history.selected a {background-color: #f2f2f2; border-top: 1px solid #a7d7f9; border-radius: 10px 10px 0 0}

/* Templates */
.vectorTabs li#ca-nstab-template.selected a,
.ns-10  .vectorTabs li#ca-view.selected a,
.ns-10   .vectorTabs li#ca-viewsource.selected a, /* When anons try to edit high-risk templates */
.ns-10  .vectorTabs li#ca-edit.selected a,
.ns-10  .vectorTabs li#ca-history.selected a,
.ns-11  .vectorTabs li#ca-talk.selected a,
.ns-11  .vectorTabs li#ca-view.selected a,
.ns-11  .vectorTabs li#ca-edit.selected a,
.ns-11  .vectorTabs li#ca-history.selected a {background-color: #fcf9f9; border-top: 1px solid #a7d7f9; border-radius: 10px 10px 0 0}

/* Help pages */
.vectorTabs li#ca-nstab-help.selected a,
.ns-12  .vectorTabs li#ca-view.selected a,
.ns-12  .vectorTabs li#ca-edit.selected a,
.ns-12  .vectorTabs li#ca-history.selected a,
.ns-13  .vectorTabs li#ca-talk.selected a,
.ns-13  .vectorTabs li#ca-view.selected a,
.ns-13  .vectorTabs li#ca-edit.selected a,
.ns-13  .vectorTabs li#ca-history.selected a {background-color: #f3f9ff; border-top: 1px solid #a7d7f9; border-radius: 10px 10px 0 0}

/* Categories */
.vectorTabs li#ca-nstab-category.selected a,
.ns-14  .vectorTabs li#ca-view.selected a,
.ns-14  .vectorTabs li#ca-edit.selected a,
.ns-14  .vectorTabs li#ca-history.selected a,
.ns-15  .vectorTabs li#ca-talk.selected a,
.ns-15  .vectorTabs li#ca-view.selected a,
.ns-15  .vectorTabs li#ca-edit.selected a,
.ns-15  .vectorTabs li#ca-history.selected a {background-color: #f5f5ff; border-top: 1px solid #a7d7f9; border-radius: 10px 10px 0 0}

/* Property description pages */
.vectorTabs li#ca-nstab-property.selected a,
.ns-102 .vectorTabs li#ca-view.selected a,
.ns-102 .vectorTabs li#ca-edit.selected a,
.ns-102 .vectorTabs li#ca-form_edit.selected a, /* When editing through forms */
.ns-102 .vectorTabs li#ca-history.selected a,
.ns-103 .vectorTabs li#ca-talk.selected a,
.ns-103 .vectorTabs li#ca-view.selected a,
.ns-103 .vectorTabs li#ca-edit.selected a,
.ns-103 .vectorTabs li#ca-history.selected {background-color: #f6fff6; border-top: 1px solid #a7d7f9; border-radius: 10px 10px 0 0}

/* Forms */
.vectorTabs li#ca-nstab-form.selected a,
.ns-106 .vectorTabs li#ca-view.selected a,
.ns-106 .vectorTabs li#ca-edit.selected a,
.ns-106 .vectorTabs li#ca-form_edit a, /* When creating new forms */
.ns-106 .vectorTabs li#ca-history.selected a,
.ns-107 .vectorTabs li#ca-talk.selected a,
.ns-107 .vectorTabs li#ca-view.selected a,
.ns-107 .vectorTabs li#ca-edit.selected a,
.ns-107 .vectorTabs li#ca-history.selected {background-color: #f6fff6; border-top: 1px solid #a7d7f9; border-radius: 10px 10px 0 0}

/* Concepts */
.vectorTabs li#ca-nstab-concept.selected a,
.ns-108 .vectorTabs li#ca-view.selected a,
.ns-108 .vectorTabs li#ca-edit.selected a,
.ns-108 .vectorTabs li#ca-history.selected a,
.ns-109 .vectorTabs li#ca-talk.selected a,
.ns-109 .vectorTabs li#ca-view.selected a,
.ns-109 .vectorTabs li#ca-edit.selected a,
.ns-109 .vectorTabs li#ca-history.selected a {background-color: #f5f5ff; border-top: 1px solid #a7d7f9; border-radius: 10px 10px 0 0}


/* Namespace tabs — Monobook */

/* Special pages */
.ns--1.skin-monobook div#p-cactions li a:hover,
.ns--1.skin-monobook div#p-cactions li.selected a,
.ns--1.skin-monobook div#content div.thumb {background-color: #f6f6f6}

/* User pages */
.ns-2.skin-monobook div#p-cactions li a:hover,
.ns-2.skin-monobook div#p-cactions li.selected a,
.ns-2.skin-monobook div#content div.thumb,
.ns-3.skin-monobook div#p-cactions li a:hover,
.ns-3.skin-monobook div#p-cactions li.selected a,
.ns-3.skin-monobook div#content div.thumb {background-color: #f9f9f9}

/* Project pages */
.ns-4.skin-monobook div#p-cactions li a:hover,
.ns-4.skin-monobook div#p-cactions li.selected a,
.ns-4.skin-monobook div#content div.thumb,
.ns-5.skin-monobook div#p-cactions li a:hover,
.ns-5.skin-monobook div#p-cactions li.selected a,
.ns-5.skin-monobook div#content div.thumb {background-color: #f3f9ff}

/* Images and media files */
.ns-6.skin-monobook div#p-cactions li a:hover,
.ns-6.skin-monobook div#p-cactions li.selected a,
.ns-6.skin-monobook div#content div.thumb,
.ns-7.skin-monobook div#p-cactions li a:hover,
.ns-7.skin-monobook div#p-cactions li.selected a,
.ns-7.skin-monobook div#content div.thumb {background-color: #f4f4f4}

/* MediaWiki (System) messages */
.ns-8.skin-monobook div#p-cactions li a:hover,
.ns-8.skin-monobook div#p-cactions li.selected a,
.ns-8.skin-monobook div#content div.thumb,
.ns-9.skin-monobook div#p-cactions li a:hover,
.ns-9.skin-monobook div#p-cactions li.selected a,
.ns-9.skin-monobook div#content div.thumb {background-color: #f2f2f2}

/* Templates */
.ns-10.skin-monobook div#p-cactions li a:hover,
.ns-10.skin-monobook div#p-cactions li.selected a,
.ns-10.skin-monobook div#content div.thumb,
.ns-11.skin-monobook div#p-cactions li a:hover,
.ns-11.skin-monobook div#p-cactions li.selected a,
.ns-11.skin-monobook div#content div.thumb {background-color: #fcf9f9}

/* Help pages */
.ns-12.skin-monobook div#p-cactions li a:hover,
.ns-12.skin-monobook div#p-cactions li.selected a,
.ns-12.skin-monobook div#content div.thumb,
.ns-13.skin-monobook div#p-cactions li a:hover,
.ns-13.skin-monobook div#p-cactions li.selected a,
.ns-13.skin-monobook div#content div.thumb {background-color: #f3f9ff}

/* Categories */
.ns-14.skin-monobook div#p-cactions li a:hover,
.ns-14.skin-monobook div#p-cactions li.selected a,
.ns-14.skin-monobook div#content div.thumb,
.ns-15.skin-monobook div#p-cactions li a:hover,
.ns-15.skin-monobook div#p-cactions li.selected a,
.ns-15.skin-monobook div#content div.thumb {background-color: #f5f5ff}

/* Property description pages */
.vectorTabs li#ca-nstab-property.selected a,
.ns-102.skin-monobook div#p-cactions li a:hover,
.ns-102.skin-monobook div#p-cactions li.selected a,
.ns-102.skin-monobook div#content div.thumb,
.ns-103.skin-monobook div#p-cactions li a:hover,
.ns-103.skin-monobook div#p-cactions li.selected a,
.ns-103.skin-monobook div#content div.thumb {background-color: #f6fff6}

/* Forms */
.ns-106.skin-monobook div#p-cactions li a:hover,
.ns-106.skin-monobook div#p-cactions li.selected a,
.ns-106.skin-monobook div#content div.thumb,
.ns-107.skin-monobook div#p-cactions li a:hover,
.ns-107.skin-monobook div#p-cactions li.selected a,
.ns-107.skin-monobook div#content div.thumb {background-color: #f6fff6}

/* Concepts */
.ns-108.skin-monobook div#p-cactions li a:hover,
.ns-108.skin-monobook div#p-cactions li.selected a,
.ns-108.skin-monobook div#content div.thumb,
.ns-109.skin-monobook div#p-cactions li a:hover,
.ns-109.skin-monobook div#p-cactions li.selected a,
.ns-109.skin-monobook div#content div.thumb {background-color: #f5f5ff}

/* Inactive tabs */
.ns-2.skin-monobook   div#p-cactions li a,
.ns-3.skin-monobook   div#p-cactions li a,
.ns-4.skin-monobook   div#p-cactions li a,
.ns-5.skin-monobook   div#p-cactions li a,
.ns-6.skin-monobook   div#p-cactions li a,
.ns-7.skin-monobook   div#p-cactions li a,
.ns-8.skin-monobook   div#p-cactions li a,
.ns-9.skin-monobook   div#p-cactions li a,
.ns-10.skin-monobook  div#p-cactions li a,
.ns-11.skin-monobook  div#p-cactions li a,
.ns-12.skin-monobook  div#p-cactions li a,
.ns-13.skin-monobook  div#p-cactions li a,
.ns-14.skin-monobook  div#p-cactions li a,
.ns-15.skin-monobook  div#p-cactions li a,
.ns-102.skin-monobook div#p-cactions li a,
.ns-103.skin-monobook div#p-cactions li a,
.ns-106.skin-monobook div#p-cactions li a,
.ns-107.skin-monobook div#p-cactions li a,
.ns-108.skin-monobook div#p-cactions li a,
.ns-109.skin-monobook div#p-cactions li a {background-color: #e0f0ff}