Difference between revisions of "MediaWiki:Common.css"

From Sugar Labs
Jump to navigation Jump to search
(italic redirects in category page listings)
Line 37: Line 37:
 
   there shouldn't be according to the MoS).
 
   there shouldn't be according to the MoS).
  
   updated 12 Nov 2009 by [[User:FGrose]] modeled after Wikipedia:MediaWiki:Common.css
+
   updated 12 Nov 2009 by [[User:FGrose]] modeled after [[wikipedia:MediaWiki:Common.css]]
 
                                           but extended to 10 levels as demonstrated
 
                                           but extended to 10 levels as demonstrated
 
                                           in [[Template:TOCright]].
 
                                           in [[Template:TOCright]].
 +
  updated 19 May 2010 by [[User:FGrose]] [[wikipedia:MediaWiki_talk:Common.css#on_toclimits]]
 
  */
 
  */
.toclimit-2 .toclevel-2,
+
.toclimit-2 .toclevel-2 ul,
.toclimit-3 .toclevel-3,
+
.toclimit-3 .toclevel-3 ul,
.toclimit-4 .toclevel-4,
+
.toclimit-4 .toclevel-4 ul,
.toclimit-5 .toclevel-5,
+
.toclimit-5 .toclevel-5 ul,
.toclimit-6 .toclevel-6,
+
.toclimit-6 .toclevel-6 ul,
.toclimit-7 .toclevel-7,
+
.toclimit-7 .toclevel-7 ul,
.toclimit-8 .toclevel-8,
+
.toclimit-8 .toclevel-8 ul,
.toclimit-9 .toclevel-9,
+
.toclimit-9 .toclevel-9 ul,
.toclimit-10 .toclevel-10 { display: none; }
+
.toclimit-10 .toclevel-10 ul { display: none; }

Revision as of 14:32, 19 May 2010

/* CSS placed here will be applied to all skins */

/* Makes redirects appear in italics in categories and on [[Special:Allpages]] */
.redirect-in-category, .allpagesredirect {
    font-style: italic;
}

.collapseButton {		/* 'show'/'hide' buttons created dynamically by the        */
	float: right;		/* CollapsibleTables JavaScript in [[MediaWiki:Common.js]] */
	font-weight: normal;	/* are styled here so they can be customised.              */
	text-align: right;
	width: auto;
}

/* When <div class="nonumtoc"> is used on the table of contents,
   the ToC will display without numbers
   .
   copied here 08 Nov 2009 by [[User:FGrose]] from [[wikipedia:MediaWiki:Common.css]]
 */
.nonumtoc .tocnumber { display: none; }
.nonumtoc #toc ul,
.nonumtoc .toc ul {
    line-height: 1.5em;
    list-style: none;
    margin: .3em 0 0;
    padding: 0;
}
.nonumtoc #toc ul ul, 
.nonumtoc .toc ul ul { 
    margin: 0 0 0 2em; 
}
 
/* 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).

   updated 12 Nov 2009 by [[User:FGrose]] modeled after [[wikipedia:MediaWiki:Common.css]]
                                          but extended to 10 levels as demonstrated
                                          in [[Template:TOCright]].
   updated 19 May 2010 by [[User:FGrose]] [[wikipedia:MediaWiki_talk:Common.css#on_toclimits]]
 */
.toclimit-2 .toclevel-2 ul,
.toclimit-3 .toclevel-3 ul,
.toclimit-4 .toclevel-4 ul,
.toclimit-5 .toclevel-5 ul,
.toclimit-6 .toclevel-6 ul,
.toclimit-7 .toclevel-7 ul,
.toclimit-8 .toclevel-8 ul,
.toclimit-9 .toclevel-9 ul,
.toclimit-10 .toclevel-10 ul { display: none; }