We've just updated MediaWiki and its underlying software. If anything doesn't look or work quite right, please mention it to us. --RanAS
MediaWiki:Common.css: Difference between revisions
From SnesLab
Vitor Vilela (talk | contribs) (Created page with "/* 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...") |
Vitor Vilela (talk | contribs) (Undo revision 937 by Vitor Vilela (talk)) Tags: Replaced Undo |
||
(3 intermediate revisions by 2 users not shown) | |||
Line 12: | Line 12: | ||
.toclimit-7 .toclevel-6 ul { | .toclimit-7 .toclevel-6 ul { | ||
display: none; | display: none; | ||
} | |||
/* Content in columns with CSS instead of tables [[Template:Columns]] */ | |||
.columns-2 div.column { | |||
/* @noflip */ | |||
float: left; | |||
width: 50%; | |||
min-width: 300px; | |||
} | |||
.columns-3 div.column { | |||
/* @noflip */ | |||
float: left; | |||
width: 33.3%; | |||
min-width: 200px; | |||
} | |||
.columns-4 div.column { | |||
/* @noflip */ | |||
float: left; | |||
width: 25%; | |||
min-width: 150px; | |||
} | |||
.columns-5 div.column { | |||
/* @noflip */ | |||
float: left; | |||
width: 20%; | |||
min-width: 120px; | |||
} | |||
.portal-column-left { | |||
float: left; | |||
width: 50%; | |||
} | |||
.portal-column-right { | |||
float: right; | |||
width: 49%; | |||
} | |||
.portal-column-left-wide { | |||
float: left; | |||
width: 60%; | |||
} | |||
.portal-column-right-narrow { | |||
float: right; | |||
width: 39%; | |||
} | |||
.portal-column-left-extra-wide { | |||
float: left; | |||
width: 70%; | |||
} | |||
.portal-column-right-extra-narrow { | |||
float: right; | |||
width: 29%; | |||
} | |||
@media only screen and (max-width: 800px) { | |||
/* Decouple the columns on narrow screens */ | |||
.portal-column-left, | |||
.portal-column-right, | |||
.portal-column-left-wide, | |||
.portal-column-right-narrow, | |||
.portal-column-left-extra-wide, | |||
.portal-column-right-extra-narrow { | |||
float: inherit; | |||
width: inherit; | |||
} | |||
} | } |
Latest revision as of 03:19, 18 November 2019
/* 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; } /* Content in columns with CSS instead of tables [[Template:Columns]] */ .columns-2 div.column { /* @noflip */ float: left; width: 50%; min-width: 300px; } .columns-3 div.column { /* @noflip */ float: left; width: 33.3%; min-width: 200px; } .columns-4 div.column { /* @noflip */ float: left; width: 25%; min-width: 150px; } .columns-5 div.column { /* @noflip */ float: left; width: 20%; min-width: 120px; } .portal-column-left { float: left; width: 50%; } .portal-column-right { float: right; width: 49%; } .portal-column-left-wide { float: left; width: 60%; } .portal-column-right-narrow { float: right; width: 39%; } .portal-column-left-extra-wide { float: left; width: 70%; } .portal-column-right-extra-narrow { float: right; width: 29%; } @media only screen and (max-width: 800px) { /* Decouple the columns on narrow screens */ .portal-column-left, .portal-column-right, .portal-column-left-wide, .portal-column-right-narrow, .portal-column-left-extra-wide, .portal-column-right-extra-narrow { float: inherit; width: inherit; } }