MediaWiki:Print.css: Unterschied zwischen den Versionen
Aus ASB-KAB
Zur Navigation springenZur Suche springenJMaske (Diskussion | Beiträge) (hm?) |
JMaske (Diskussion | Beiträge) (bereinigt und von common.css ausgelagert) |
||
| Zeile 1: | Zeile 1: | ||
| − | /* | + | /* Navigationsleisten nicht mit ausdrucken */ |
| − | /* | + | |
| + | .NavFrame { | ||
| + | display: none; | ||
| + | } | ||
| + | .BoxenVerschmelzen { | ||
| + | display: none; | ||
| + | } | ||
| + | |||
| + | /* Ausdruck: Schrift */ | ||
| − | + | @media print { | |
| − | + | body { | |
| − | + | font-family: Arial,Sans,sans-serif; | |
| + | font-size: 12pt; | ||
| + | } | ||
} | } | ||
| − | /* | + | /* ASB-Tabellen: Verwendung von th in der Notationsspalte */ |
| − | . | + | table.asb th { |
| − | text- | + | font-weight: normal; |
| − | + | text-align: left; | |
| + | width: 80px; | ||
| + | font-family: Helvetica, Arial, sans-serif; | ||
} | } | ||
| Zeile 20: | Zeile 32: | ||
} | } | ||
| − | /* | + | /* Zu Navigationszwecken eingefügte Zwischenüberschriften nicht ausdrucken */ |
| − | /* | + | |
| − | /* | + | .np { |
| + | display: none; | ||
| + | } | ||
| + | |||
| + | /* Inhaltsverzeichnis (table of contents) nicht ausdrucken */ | ||
| + | |||
| + | .toc { | ||
| + | display: none; | ||
| + | } | ||
| + | |||
| + | /* Ausdruck: Schriftgröße, Tabellenzeilen aneinanderrücken */ | ||
| + | /* (Korrektur der Einrückung siehe oben) */ | ||
| + | body { | ||
| + | font-size: 12pt; | ||
| + | } | ||
| + | |||
table.asb { | table.asb { | ||
| − | border- | + | border-width: 0; |
| + | margin: 0em 0em 0em 0em; | ||
} | } | ||
table.asb th, table.asb td { | table.asb th, table.asb td { | ||
| − | border- | + | border-width: 0; |
| + | margin-top: -3em; | ||
| + | margin-bottom: -3em; | ||
| + | padding: 0em; | ||
| + | } | ||
| + | |||
| + | table.asb tr { | ||
| + | margin-top: -3em; | ||
| + | margin-bottom: -3em; | ||
| + | padding: 0em; | ||
| + | } | ||
| + | |||
| + | /* Ausdruck: Vermeiden von Zeilenumbrüchen innerhalb einer Tabellenzeile */ | ||
| + | |||
| + | table.asb td { | ||
| + | /* page-break-inside: avoid;*/ | ||
| + | } | ||
| + | |||
| + | /* Ausdruck: Erzwingen von Zeilenumbrüchen vor Tabellenüberschriften */ | ||
| + | |||
| + | span.bb { | ||
| + | page-break-before: always; | ||
| + | } | ||
| + | |||
| + | /* Nicht ausdrucken: Seitenüberschrift */ | ||
| + | /* Nicht ausdrucken: Quellenangabe Website */ | ||
| + | /* Nicht ausdrucken: Unterseitenangabe */ | ||
| + | /* Nicht ausdrucken: Quellenangabe URL */ | ||
| + | /* Nicht ausdrucken: Seitenfuß */ | ||
| + | /* Nicht ausdrucken: Kategorie */ | ||
| + | |||
| + | h1.firstHeading, h3#siteSub, div#contentSub, div.printfooter, #footer, div#mw-normal-catlinks { | ||
| + | display: none; | ||
} | } | ||
Version vom 18. Februar 2013, 21:14 Uhr
/* Navigationsleisten nicht mit ausdrucken */
.NavFrame {
display: none;
}
.BoxenVerschmelzen {
display: none;
}
/* Ausdruck: Schrift */
@media print {
body {
font-family: Arial,Sans,sans-serif;
font-size: 12pt;
}
}
/* ASB-Tabellen: Verwendung von th in der Notationsspalte */
table.asb th {
font-weight: normal;
text-align: left;
width: 80px;
font-family: Helvetica, Arial, sans-serif;
}
/* Definition der Einrückung mittels ":" */
dd {
margin-left: 1.5em;
margin-top: 1em;
}
/* Zu Navigationszwecken eingefügte Zwischenüberschriften nicht ausdrucken */
.np {
display: none;
}
/* Inhaltsverzeichnis (table of contents) nicht ausdrucken */
.toc {
display: none;
}
/* Ausdruck: Schriftgröße, Tabellenzeilen aneinanderrücken */
/* (Korrektur der Einrückung siehe oben) */
body {
font-size: 12pt;
}
table.asb {
border-width: 0;
margin: 0em 0em 0em 0em;
}
table.asb th, table.asb td {
border-width: 0;
margin-top: -3em;
margin-bottom: -3em;
padding: 0em;
}
table.asb tr {
margin-top: -3em;
margin-bottom: -3em;
padding: 0em;
}
/* Ausdruck: Vermeiden von Zeilenumbrüchen innerhalb einer Tabellenzeile */
table.asb td {
/* page-break-inside: avoid;*/
}
/* Ausdruck: Erzwingen von Zeilenumbrüchen vor Tabellenüberschriften */
span.bb {
page-break-before: always;
}
/* Nicht ausdrucken: Seitenüberschrift */
/* Nicht ausdrucken: Quellenangabe Website */
/* Nicht ausdrucken: Unterseitenangabe */
/* Nicht ausdrucken: Quellenangabe URL */
/* Nicht ausdrucken: Seitenfuß */
/* Nicht ausdrucken: Kategorie */
h1.firstHeading, h3#siteSub, div#contentSub, div.printfooter, #footer, div#mw-normal-catlinks {
display: none;
}
/* Seitenumbruch beim Ausdruck */
span.bb {
/* page-break-before: always;*/
}
span.bb:first-child {
/* page-break-before: avoid;*/
}