MediaWiki:Common.css: Unterschied zwischen den Versionen
Aus Stratum 0
(less padding/margin for pre, .mv-core) |
(NavToggle, from Wikipedia) |
||
Zeile 41: | Zeile 41: | ||
padding: 0.5em; | padding: 0.5em; | ||
margin: 0.5em 0; | margin: 0.5em 0; | ||
+ | } | ||
+ | |||
+ | /* Standard Navigationsleisten, aka box hiding thingy | ||
+ | * from Wikipedia: https://en.wikipedia.org/wiki/MediaWiki:Common.css | ||
+ | * Documentation at https://en.wikipedia.org/wiki/Wikipedia:NavFrame | ||
+ | */ | ||
+ | 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%; | ||
} | } |
Version vom 20. August 2013, 18:16 Uhr
/* CSS an dieser Stelle wirkt sich auf alle Skins aus */
/* Tabellen */
table.prettytable {
margin: 1em 1em 1em 0;
background: #f9f9f9;
border: 1px #aaaaaa solid;
border-collapse: collapse;
}
table.prettytable th, table.prettytable td {
border: 1px solid #8cacbb;
padding: 0.2em;
vertical-align: top;
}
table.prettytable th {
background: #dee7ec;
text-align: left;
}
table.prettytable caption {
margin-left: inherit;
margin-right: inherit;
}
/** siehe zB http://weblogtoolscollection.com/archives/2007/06/16/css-for-code-wrap-long-lines/ */
pre.wrap {
white-space: pre-wrap; /* css-3 */
white-space: -moz-pre-wrap !important; /* Mozilla, since 1999 */
white-space: -pre-wrap; /* Opera 4-6 */
white-space: -o-pre-wrap; /* Opera 7 */
word-wrap: break-word; /* Internet Explorer 5.5+ */
}
pre {
overflow: auto;
}
pre, .mw-code {
padding: 0.5em;
margin: 0.5em 0;
}
/* Standard Navigationsleisten, aka box hiding thingy
* from Wikipedia: https://en.wikipedia.org/wiki/MediaWiki:Common.css
* Documentation at https://en.wikipedia.org/wiki/Wikipedia:NavFrame
*/
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%;
}