MediaWiki:Common.css: Unterschied zwischen den Versionen
Aus Stratum 0
(+ .rawinclude-header) |
(improve .fold, .wrap) |
||
Zeile 26: | Zeile 26: | ||
/** siehe zB http://weblogtoolscollection.com/archives/2007/06/16/css-for-code-wrap-long-lines/ */ | /** siehe zB http://weblogtoolscollection.com/archives/2007/06/16/css-for-code-wrap-long-lines/ */ | ||
− | + | .wrap { | |
white-space: pre-wrap; /* css-3 */ | white-space: pre-wrap; /* css-3 */ | ||
white-space: -moz-pre-wrap !important; /* Mozilla, since 1999 */ | white-space: -moz-pre-wrap !important; /* Mozilla, since 1999 */ | ||
Zeile 34: | Zeile 34: | ||
} | } | ||
− | + | .fold { | |
− | height: 200px; | + | max-height: 200px; |
overflow-y: scroll; | overflow-y: scroll; | ||
} | } | ||
Zeile 95: | Zeile 95: | ||
font-weight: normal; | font-weight: normal; | ||
font-size: 90%; | font-size: 90%; | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
} | } |
Version vom 12. Oktober 2014, 22:11 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/ */
.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+ */
}
.fold {
max-height: 200px;
overflow-y: scroll;
}
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%;
}