MediaWiki:Common.css: Unterschied zwischen den Versionen
This is [[MediaWiki:Tagline]]. Set to <code>display:none</code> by chameleon skin.
Admin (Diskussion | Beiträge) Keine Bearbeitungszusammenfassung |
Admin (Diskussion | Beiträge) Keine Bearbeitungszusammenfassung |
||
Zeile 1: | Zeile 1: | ||
/* Das folgende CSS wird für alle Benutzeroberflächen geladen. */ | /* Das folgende CSS wird für alle Benutzeroberflächen geladen. */ | ||
/* ************************** */ | |||
/* For template documentation */ | |||
/* @usedby: Module:documentation */ | |||
.template-documentation { | |||
clear: both; | |||
margin: 1em 0 0 0; | |||
border: 1px solid #aaa; | |||
background-color: #ecfcf4; | |||
padding: 1em; | |||
} | |||
/* ********** */ | |||
/* references */ | |||
/* @usedby: Template:reflist */ | |||
/* Make the list of references smaller */ | |||
ol.references, | |||
div.reflist, | |||
div.refbegin { | |||
font-size: 90%; /* Default font-size */ | |||
margin-bottom: 0.5em; | |||
} | |||
div.refbegin-100 { | |||
font-size: 100%; /* Option for normal fontsize in {{refbegin}} */ | |||
} | |||
div.reflist ol.references { | |||
font-size: 100%; /* Reset font-size when nested in div.reflist */ | |||
list-style-type: inherit; /* Enable custom list style types */ | |||
} | |||
/* Highlight clicked reference in blue to help navigation */ | |||
ol.references li:target, | |||
sup.reference:target, | |||
span.citation:target { | |||
background-color: #DEF; | |||
} | |||
/* Ensure refs in table headers and the like aren't bold or italic */ | |||
sup.reference { | |||
font-weight: normal; | |||
font-style: normal; | |||
} | |||
/* Allow hidden ref errors to be shown by user CSS */ | |||
span.brokenref { | |||
display: none; | |||
} | |||
/* ************************************************** */ | /* ************************************************** */ |
Version vom 8. August 2015, 21:34 Uhr
/* Das folgende CSS wird für alle Benutzeroberflächen geladen. */
/* ************************** */
/* For template documentation */
/* @usedby: Module:documentation */
.template-documentation {
clear: both;
margin: 1em 0 0 0;
border: 1px solid #aaa;
background-color: #ecfcf4;
padding: 1em;
}
/* ********** */
/* references */
/* @usedby: Template:reflist */
/* Make the list of references smaller */
ol.references,
div.reflist,
div.refbegin {
font-size: 90%; /* Default font-size */
margin-bottom: 0.5em;
}
div.refbegin-100 {
font-size: 100%; /* Option for normal fontsize in {{refbegin}} */
}
div.reflist ol.references {
font-size: 100%; /* Reset font-size when nested in div.reflist */
list-style-type: inherit; /* Enable custom list style types */
}
/* Highlight clicked reference in blue to help navigation */
ol.references li:target,
sup.reference:target,
span.citation:target {
background-color: #DEF;
}
/* Ensure refs in table headers and the like aren't bold or italic */
sup.reference {
font-weight: normal;
font-style: normal;
}
/* Allow hidden ref errors to be shown by user CSS */
span.brokenref {
display: none;
}
/* ************************************************** */
/* Standard Navigationsleisten, aka box hiding thingy
from .de. Documentation at [[Wikipedia:NavFrame]]. */
/* @usedby: Module:Sidebar */
/* @usedby: Tempalte:Hidden */
/* @usedby: Tempalte:Hidden begin */
div.NavFrame {
margin: 0;
padding: 4px;
border: 1px solid #aaa;
text-align: center;
border-collapse: collapse;
font-size: 95%;
}
div.NavFrame + div.NavFrame {
border-top-style: none;
border-top-style: hidden;
}
div.NavPic {
background-color: #fff;
margin: 0;
padding: 2px;
/* @noflip */
float: left;
}
div.NavFrame div.NavHead {
height: 1.6em;
font-weight: bold;
background-color: #ccf;
position: relative;
}
div.NavFrame p,
div.NavFrame div.NavContent,
div.NavFrame div.NavContent p {
font-size: 100%;
}
div.NavEnd {
margin: 0;
padding: 0;
line-height: 1px;
clear: both;
}
a.NavToggle {
position: absolute;
top: 0;
/* @noflip */
right: 3px;
font-weight: normal;
font-size: 90%;
}
/* ********************************************************************************************************************************* */
/* ********************************************************* CUSTOMIZATION ********************************************************* */
/* ********************************************************************************************************************************* */
/* even and odd in tables */
.row-even {background-color:#FFF;}
.row-odd {background-color:#CDE6EA;}
.nogrid th, .nogrid td {border: none;}
.float-left { float: left; clear: left; }
.float-right { float: right; clear: right; margin: 1em 0 1em 1em; }
.centered { margin-left: auto; margin-right: auto; }
/* some settings for <code>, used by {{Code}} */
code {
background-color: #f9f9f9;
border: 1px solid #ddd;
border-radius: 2px;
color: black;
padding: 1px 4px;
}
/* Display tabs with 4 spaces, see [[Bugzilla:57824]] and [[Bugzilla:57825]] */
div.mw-geshi div,
div.mw-geshi div pre,
span.mw-geshi,
pre.source-css,
pre.source-javascript,
pre.source-lua {
-moz-tab-size: 4;
-o-tab-size: 4;
tab-size: 4;
}
/* 1.23 fix for lua code font size */
pre.lua.source-lua {
font-family: monospace, "Courier New" !important;
font-size:13px;
}