Difference between revisions of "MediaWiki:Common.css"
Jump to navigation
Jump to search
Carandraug (talk | contribs) m (css fixes for tocinline) |
Carandraug (talk | contribs) m (trying to fix CSS for tocinline) |
||
Line 12: | Line 12: | ||
and not a float, so make a style that "undoes" the change above. | and not a float, so make a style that "undoes" the change above. | ||
Then use it like "<div class="tocinline">__TOC__</div>" | Then use it like "<div class="tocinline">__TOC__</div>" | ||
+ | |||
+ | This "magic" CSS means toc id inside tocinline will not float. | ||
*/ | */ | ||
− | .tocinline | + | .tocinline .toc { float: none }; |
Revision as of 08:31, 1 September 2016
/* CSS placed here will be applied to all skins */
/*
Make table of contents a float and aligned to the right.
This is similar to wikipedia. The alternative breaks up the
flow of text and leads to people ignoring the first section.
*/
#toc { float: right };
/*
In some cases, like the FAQ, we do want the TOC to be inline
and not a float, so make a style that "undoes" the change above.
Then use it like "<div class="tocinline">__TOC__</div>"
This "magic" CSS means toc id inside tocinline will not float.
*/
.tocinline .toc { float: none };