MediaWiki:Common.css
This is [[MediaWiki:Tagline]]. Set to <code>display:none</code> by chameleon skin.
Hinweis: Leere nach dem Veröffentlichen den Browser-Cache, um die Änderungen sehen zu können.
- Firefox/Safari: Umschalttaste drücken und gleichzeitig Aktualisieren anklicken oder entweder Strg+F5 oder Strg+R (⌘+R auf dem Mac) drücken
- Google Chrome: Umschalttaste+Strg+R (⌘+Umschalttaste+R auf dem Mac) drücken
- Internet Explorer/Edge: Strg+F5 drücken oder Strg drücken und gleichzeitig Aktualisieren anklicken
- Opera: Strg+F5
/* Das folgende CSS wird für alle Benutzeroberflächen geladen. */
/* **************** */
/* Unbulleted lists */
/* @usedby: Module:Navbar */
/* @usedby: Module:Navbox */
/* @usedby: Module:Submit an edit request */
/* @usedby: Module:Toolbar */
/* @usedby: Module:Vandal-m */
/* @usedby: Module:Template shortcut */
.plainlist ol,
.plainlist ul {
line-height: inherit;
list-style: none none;
margin: 0;
}
.plainlist ol li,
.plainlist ul li {
margin-bottom: 0;
}
/* *********************************** */
/* Hatnotes and disambiguation notices */
/* @usedby: Module:Further */
/* @usedby: Module:Hatnote */
/* @usedby: Module:Main */
.rellink,
.dablink,
.hatnote,
.mw-tpl-rellink {
font-style: italic;
padding-bottom: 0.4em;
padding-left: 0;
margin-bottom: 0.4em;
color: #555;
border-bottom: 1px solid #ccc;
}
.rellink i,
.dablink i,
.hatnote i {
font-style: normal;
}
div.rellink,
div.dablink,
div.hatnote {
/* @noflip */
padding-left: 1.6em;
margin-bottom: 0.5em;
}
/* *********************************** */
/* Prevent line breaks in silly places:
1) Where desired
2) Links when we don't want them to
3) Bold "links" to the page itself
4) Ref tags with group names <ref group="Note"> --> "[Note 1]" */
/* @usedby: Module:Navbox */
/* @usedby: Module:Sidebar */
/* @usedby: Template:Aligned table */
/* @usedby: Template:Intricate template */
/* @usedby: Template:Nowrap */
/* @usedby: Template:Para */
/* @usedby: Template:Tag */
/* @usedby: Template:Tlc */
/* @usedby: Template:Tlf */
/* @usedby: Template:Tlg */
.nowrap,
.nowraplinks a,
.nowraplinks .selflink,
sup.reference a {
white-space: nowrap;
}
/* But allow wrapping where desired: */
.wrap,
.wraplinks a {
white-space: normal;
}
/* ************************** */
/* 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;
}