Difference between revisions of "MediaWiki:Common.css"
From FreeSpace Wiki
(added 'wikitable' and 'prettytable' from mediawiki's common.css) |
Goober5000 (talk | contribs) (add CSS for TOC limit feature, requested by BW) |
||
| (3 intermediate revisions by 2 users not shown) | |||
| Line 1: | Line 1: | ||
/** CSS placed here will be applied to all skins */ | /** CSS placed here will be applied to all skins */ | ||
| + | |||
| + | /* <pre><nowiki> */ | ||
/* wikitable/prettytable class for skinning normal tables */ | /* wikitable/prettytable class for skinning normal tables */ | ||
| Line 33: | Line 35: | ||
background-color: transparent; | background-color: transparent; | ||
} | } | ||
| + | |||
| + | /* Allow limiting of which header levels are shown in a TOC; | ||
| + | <div class="toclimit-3">, for instance, will limit to | ||
| + | showing ==headings== and ===headings=== but no further | ||
| + | (as long as there are no =headings= on the page, which | ||
| + | there shouldn't be according to the MoS). | ||
| + | */ | ||
| + | .toclimit-2 .toclevel-1 ul, | ||
| + | .toclimit-3 .toclevel-2 ul, | ||
| + | .toclimit-4 .toclevel-3 ul, | ||
| + | .toclimit-5 .toclevel-4 ul, | ||
| + | .toclimit-6 .toclevel-5 ul, | ||
| + | .toclimit-7 .toclevel-6 ul { | ||
| + | display: none; | ||
| + | } | ||
| + | |||
| + | /* </nowiki></pre> */ | ||
Latest revision as of 06:10, 29 January 2014
/** CSS placed here will be applied to all skins */
/* <pre><nowiki> */
/* wikitable/prettytable class for skinning normal tables */
table.wikitable,
table.prettytable {
margin: 1em 1em 1em 0;
background: #f9f9f9;
border: 1px #aaa solid;
border-collapse: collapse;
}
table.wikitable th, table.wikitable td,
table.prettytable th, table.prettytable td {
border: 1px #aaa solid;
padding: 0.2em;
}
table.wikitable th,
table.prettytable th {
background: #f2f2f2;
text-align: center;
}
table.wikitable caption,
table.prettytable caption {
margin-left: inherit;
margin-right: inherit;
font-weight: bold;
}
table.prettytable code,
table.wikitable code {
background-color: transparent;
}
/* Allow limiting of which header levels are shown in a TOC;
<div class="toclimit-3">, for instance, will limit to
showing ==headings== and ===headings=== but no further
(as long as there are no =headings= on the page, which
there shouldn't be according to the MoS).
*/
.toclimit-2 .toclevel-1 ul,
.toclimit-3 .toclevel-2 ul,
.toclimit-4 .toclevel-3 ul,
.toclimit-5 .toclevel-4 ul,
.toclimit-6 .toclevel-5 ul,
.toclimit-7 .toclevel-6 ul {
display: none;
}
/* </nowiki></pre> */