MediaWiki:Common.css

From Citizendium
Jump to navigation Jump to search

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.
/* CSS placed here will be applied to all skins*/

body.page-Special_ExpandTemplates textarea {
  width: 100%;
  padding-top: 0.1em;
  padding-right: 0.1em;
  padding-bottom: 0.1em;
  padding-left: 0.1em;
}

#contentSub {
    font-size:84%;
    margin: 0.4em 0;
}
img.thumbborder {
    background:#fff;
    border:1px solid #eee;
    padding:5px;
}

#content pre {
    overflow:auto;
}

/* make the list of references look smaller */
ol.references {
   font-size: 100%;
}

.references-small { font-size: 90%;}

.references-2column {
  font-size: 90%;
  -moz-column-count:2;
  column-count:2;
}

.same-bg { background: none }

/* wikitable/prettytable class for skinning normal tables */

table.wikitable,
table.prettytable {
  margin: 1em 1em 1em 0;
  background: #f9f9f9;
  border: 1px #aaa solid;
  border-collapse: collapse;
}

table.wikitable th, table.wikitable td,
table.prettytable th, table.prettytable td {
  border: 1px #aaa solid;
  padding: 0.4em;
}

table.wikitable th,
table.prettytable th {
  background: #f2f2f2;
  text-align: center;
}

table.wikitable caption,
table.prettytable caption {
  margin-left: inherit;
  margin-right: inherit;
  font-weight: bold;
}

/* default skin for navigation boxes */
/* Are these used on CZ? */
table.navbox {
    background-color: #f9f9f9;
    border: 1px solid #aaa;
    clear: both;
    font-size: 90%;
    margin: 1em 0em 0em;
    padding: 5px;
    text-align: center;
    width: 100%;
}

table.navbox th {
    background-color: #ccf;
    padding-left: 1em;
    padding-right: 1em;
}

table.navbox tr:not(:first-child) th {
    background-color: #ddf;
}

@media print {
    .navbox {
        display: none;
    }
}

/* Infobox template style */

.infobox {
   border: 1px solid #aaa;
   background-color: #f9f9f9;
   color: black;
   margin: 0 0 0.5em 1em;
   padding: 0;
   border-spacing: 1px;
   float: right;
   clear: right;
   width: 25em;
   font-size: 85%;
}
.infobox td,
.infobox th {
   vertical-align:top;
   padding: 0.25em 0.5em;
}
.infobox td {
   text-align: left;
}
.infobox th {
   text-align: right;
   width: 8.75em;
}
.infobox th.caption,
.infobox caption {
   font-size: 150%;
   text-align: center;
   margin-left: inherit;
}



/* Style for "notices" */
/* Is this used on CZ? */
.notice {
    margin: 1em;
    padding: 0.2em;
}


/* Makes redirects appear in italics on [[Special:Allpages]] */
.allpagesredirect {
    font-style: italic;
}


/* Class for links with loudspeaker icon next to them */
.audiolink a{
    background: url("http://upload.wikimedia.org/wikipedia/commons/thumb/8/8a/Loudspeaker.svg/11px-Loudspeaker.svg.png") center left no-repeat !important;
    padding-left: 16px !important;
    padding-right: 0 !important;
}

/* Icons for medialist templates [[Template:Listen]], [[Template:Multi-listen_start]], [[Template:Video]], [[Template:Multi-video_start]] */
/* Are these used on CZ? */
div.listenlist {
    background: url("http://upload.wikimedia.org/wikipedia/commons/thumb/a/a6/Gnome-speakernotes.png/30px-Gnome-speakernotes.png");
    padding-left: 40px;
}
div.videolist, div.multivideolist {
    background: url("http://upload.wikimedia.org/wikipedia/en/thumb/2/20/Tango-video-x-generic.png/40px-Tango-video-x-generic.png");
    padding-left: 50px;
}

/* Style rules for media list templates */
/* Are these used on CZ? */
div.medialist {
    min-height: 50px;
    margin: 1em;
    background-position: top left;
    background-repeat: no-repeat;
}
div.medialist ul {
    list-style-type: none; 
    list-style-image: none;
    margin: 0;
}
div.medialist ul li {
    padding-bottom: 0.5em;
}
div.medialist ul li li {
    font-size: 91%;
    padding-bottom: 0;
}


/* Don't show external link icon for plainlinks */
a.plainlink, .plainlinks a, .plainlinksneverexpand a {
   background: none !important;
   padding: 0 !important;
}
.plainlinksneverexpand .urlexpansion {
  display: none ! important;
}

/*Add formatting to make sure that "external references" from [[Template:Ref]] do
  not get URL expansion, not even when printed. The mechanism up to MediaWiki 1.4 was
  that the HTML code contained a SPAN following the anchor A; this SPAN had the class
  "urlexpansion", which was not displayed on screen, but was shown when the medium was
  "print". The rules below ensure (a) that there is no extra padding to the right of
  the anchor (displayed as "[<number>]"), (b) that there is no "external link arrow" for
  the link, and (c) that this SPAN of class "urlexpansion" is never shown.
*/
.plainlinksneverexpand .urlexpansion {
  display: none ! important;
}
/* With MediaWiki 1.5, the mechanism has changed: instead of a SPAN of class "urlexpansion"
   following the anchor A, the anchor itself now has class "external autonumber" and the
   expansion is inserted when printing (see the common printing style sheet at
   http://en.wikipedia.org/skins-1.5/common/commonPrint.css) using the ":after" pseudo-
   element of CSS. We have to switch this off for links due to Template:Ref!
*/
.plainlinksneverexpand a.external.text:after {
  display: none !important;
}
.plainlinksneverexpand a.external.autonumber:after {
  display: none !important;
}

/* Put error and success messages in a colored box with large font (from MW 1.16a).
   The errors often show when forms cannot be submitted (e.g. RequestAccount).
*/
.errorbox, .successbox {
	font-size: larger;
	border: 2px solid;
	padding: .5em 1em;
	float: left;
	margin-bottom: 2em;
	color: #000;
}
.errorbox {
	border-color: red;
	background-color: #fff2f2;
}
.successbox {
	border-color: green;
	background-color: #dfd;
}
.errorbox h2, .successbox h2 {
	font-size: 1em;
	font-weight: bold;
	display: inline;
	margin: 0 .5em 0 0;
	border: none;
}

/* Messagebox templates */
/* Are these used on CZ? */
.messagebox {
   border: 1px solid #aaa;
   background-color: #f9f9f9;
   width: 80%;
   margin: 0 auto 1em auto;
   padding: .2em;
}
.messagebox.merge {
   border: 1px solid #c0b8cc;
   background-color: #f0e5ff;
   text-align: center;
}
.messagebox.cleanup {
   border: 1px solid #9f9fff;
   background-color: #efefff;
   text-align: center;
}
.messagebox.standard-talk {
   border: 1px solid #c0c090;
   background-color: #f8eaba;
}

/* Put a checker background at the image description page only visible if the image has transparent background */
#file img {background: url("http://upload.wikimedia.org/wikipedia/commons/5/5d/Checker-16x16.png") repeat;}

/* Support for Template:IPA, Template:Unicode and Template:Polytonic. The inherit declaration resets the font for all browsers except MSIE6.  The empty comment must remain. Please copy any changes to [[Template:IPA fonts]] and [[Template:Unicode fonts]]. */
.IPA {
        font-family: "Chrysanthi Unicode", "Doulos SIL", Gentium, GentiumAlt, Code2000, "TITUS Cyberbit Basic", "DejaVu Sans", "Bitstream Cyberbit", "Arial Unicode MS", "Lucida Sans Unicode", "Hiragino Kaku Gothic Pro", "Matrix Unicode";
        font-family /**/:inherit;
}
.Unicode {
        font-family: Code2000, "TITUS Cyberbit Basic", "Doulos SIL", "Chrysanthi Unicode", "Bitstream Cyberbit", "Bitstream CyberBase", Thryomanes, Gentium, GentiumAlt, "Lucida Grande", "Arial Unicode MS", "Microsoft Sans Serif", "Lucida Sans Unicode";
        font-family /**/:inherit;
}
.latinx {
        font-family: Code2000, "TITUS Cyberbit Basic", "Microsoft Sans Serif";
        font-family /**/:inherit;
}
.polytonic {
        font-family: Athena, Gentium, "Palatino Linotype", "Arial Unicode MS", "Lucida Sans Unicode", "Lucida Grande", Code2000; 
        font-family /**/:inherit;
}
.mufi {
        font-family: Alphabetum, Cardo, LeedsUni, Junicode, "TITUS Cyberbit Basic", ALPHA-Demo;
}

/* Remove underline from IPA links */
.IPA a:link, .IPA a:visited {
  text-decoration: none;
}

/* Removes underlines from links */
.nounderlines a { 
  text-decoration: none;
}

/* Removes useless links from printout */
@media print {
    #privacy, #about, #disclaimer {display:none;}
}

/* Is this used on CZ? */
.messagebox.small-talk {
  width: 238px;
  font-size: 85%;
  float: right;
  clear: both;
  margin: 0 0 1em 1em;
  line-height: 1.25em; 
  background: #F8EABA;
}


/* Coloured watchlist numbers */
.mw-plusminus-pos {
  color:darkgreen;
}
.mw-plusminus-neg {
  color:darkred;
}

/* Is this used on CZ? */
.dablink {
  font-style:italic;
  padding-left:2em;
}

/* allows us to show or hide text */
/* Are these used on CZ? */
div.Boxmerge,
div.NavFrame {
        margin: 0px;
        padding: 4px;
        border: 1px solid #aaa;
        text-align: center;
        border-collapse: collapse;
        font-size: 95%;
}
div.Boxmerge div.NavFrame {
        border-style: none;
        border-style: hidden;
}
div.NavFrame + div.NavFrame {
        border-top-style: none;
        border-top-style: hidden;
}
div.NavPic {
        background-color: #fff;
        margin: 0px;
        padding: 2px;
        float: left;
}
div.NavFrame div.NavHead {
        height: 1.6em;
        font-weight: bold;
        background-color: #ccf;
        position:relative;
}
div.NavFrame p                { font-size: 100%; }
div.NavFrame div.NavContent   { font-size: 100%; }
div.NavFrame div.NavContent p { font-size: 100%; }
div.NavEnd {
        margin: 0px;
        padding: 0px;
        line-height: 1px;
        clear: both;
}
a.NavToggle {
        position:absolute;
        top: 0px;
        right: 3px;
        font-weight:normal;
        font-size:smaller;
}

/* Used on {{tl|userplan-all}} and perhaps other user pages (Larry Sanger added these) */
table.UserComponent {
   width:100%;
   cellpadding:0px;
   cellspacing:0px;
}
tr.UserTableHeader {
   color:darkblue;
   background:beige;
}

a:link.white     {color:white}
a:visited.white  {color:white}
a:hover.white    {color:white}
a:active.white   {color:white}





/* Upload Wizard */

table.wizard {
	width: 100%;
	margin: 0;
	padding: 0;
	border-spacing: 0;
	text-align: center;
	vertical-align: middle;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-box-shadow: rgba(0, 0, 0, 0.25) 0px 1px 3px;
	-webkit-box-shadow: rgba(0, 0, 0, 0.25) 0px 1px 3px;
}

td.wizard-tab {
	background: #e5e5e5;
	background: -webkit-gradient(linear, left top, left bottom, from(#eee), to(#ddd));
	padding: 0;
	border: 1px solid #ccc;
	border-left-width: 0;
	border-bottom-color: #aaa;
}
td.wizard-tab p {
	margin: 0 !important;
	padding: 0;
}
td.wizard-tab a, #bodyContent td.wizard-tab .plainlinks a {
	display: block;
	padding: 0.5em !important;
	border:solid #ccc;
	border-width:0 0 1px;
	color: #444 !important;
	text-decoration: none;
}

td.wizard-tab:hover {
	background: #e9e9e9;
	background: -webkit-gradient(linear, left top, left bottom, from(#f3f3f3), to(#e3e3e3));
}
td.wizard-tab:hover a {
	color: #000 !important;
	border-color: #d7d7d7;
}

td.wizard-tab.first {
	border-left-width: 1px !important;
	-moz-border-radius-topleft: 8px;
	-webkit-border-top-left-radius: 8px;
}
td.wizard-tab.last {
	border-right-width: 1px !important;
	-moz-border-radius-topright: 8px;
	-webkit-border-top-right-radius: 8px;
}

td.wizard-tab.selected {
	background: #eee;
	background: -webkit-gradient(linear, left top, left bottom, from(#f7f7f7), to(#eee));
	border-width: 1px 0;
	border-color: #aaa #aaa #ddd;
	border-bottom-style: dotted;
}
td.wizard-tab.selected a {
	border: 0px none;
	color: #000;
}

td.wizard-tab.unselected a {
	color: #777;
}

td.wizard-tab.unselected:hover a {
	color: #555;
}

td.wizard-tab.unselected.before {
	border-color: #ccc #aaa #aaa #ccc;
	-moz-border-radius-bottomright: 4px;
	-webkit-border-bottom-right-radius: 4px;
}
td.wizard-tab.unselected.before a {
	border-width:0 1px 1px 0;
	-moz-border-radius-bottomright: 3px;
	-webkit-border-bottom-right-radius:3px;
}

td.wizard-tab.unselected.after {
	border-color: #ccc #ccc #aaa #aaa;
	border-left-width: 1px;
	-moz-border-radius-bottomleft: 4px;
	-webkit-border-bottom-left-radius: 4px;
}
td.wizard-tab.unselected.after a {
	border-width:0 0 1px 1px;
	-moz-border-radius-bottomleft: 3px;
	-webkit-border-bottom-left-radius:3px;
}


td.wizard-opt {
	width: 100%;
	padding: 0;
	background: #e5e5e5;
	background: -webkit-gradient(linear, left top, left bottom, from(#eee), to(#ddd));
	border: 1px solid #ccc;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	-moz-box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px;
	-webkit-box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px;
}
td.wizard-opt:hover {
	background: #e9e9e9;
	background: -webkit-gradient(linear, left top, left bottom, from(#f3f3f3), to(#e3e3e3));
	border-color: #d5d5d5;
	-moz-box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px;
	-webkit-box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px;
}
td.wizard-opt p {
	padding: 0;
	margin: 0 !important;
}
td.wizard-opt a {
	color: #333 !important;
	text-decoration: none;
}
td.wizard-opt a span {
	display: block;
	padding: 0.5em 0.75em !important;
}
td.wizard-opt:hover a {
	color: #000 !important;
}

/* END Upload Wizard */