MediaWiki:Common.css: Difference between revisions

From Wikimedia Foundation Governance Wiki
Content deleted Content added
MZMcBride (talk | contribs)
+test code
MZMcBride (talk | contribs)
rv
Line 191: Line 191:
.hlist.hnum ol ol li:before {
.hlist.hnum ol ol li:before {
content: counter(level2) " ";
content: counter(level2) " ";
}

#contentSub {
margin: 1em 0 !important;
}
}

Revision as of 04:28, 30 April 2012

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

/* To facilitate rtl translations */
.table-FA {
font-family: Tahoma;
}

#bodyContent .table-RTL a{
background:none;
padding-right:0;
}

#bodyContent .table-RTL UL{
margin-right:10px;
display:table;
}

.persian {
    font-family: Tahoma;
}
 
#bodyContent .persian a, #bodyContent .persian a.external, #bodyContent .rtl a, #bodyContent .rtl a.external {
background:none;
padding-right:0;
}
 
/* To make redirects show up in italics on [[Special:Allpages]]. */
.allpagesredirect a, .watchlistredir a {
font-style:italic;
}

/* Default style for PrettyTextBox and InformationBox class of templates */
 .InformationBox {
   width: 80%; 
   border: solid #999999 1px; 
   background: #F8F8F8; 
   margin: 0.5em auto; 
   clear: both; 
   color: #000000; 
   padding: 3px;
 }

/* Language navigation links (moved from monobook.css */

.divlang {
    background: #F9F9F9;
    border: 1px solid #E9E9E9;
    font-size: 0.85em;
    margin: 0 0 1em 0;
    padding: 0.5em 1em;
    text-align: left;
}

.divlang ul {
    display: inline;
    margin-left: 0;
    padding-left: 0;
}

.divlang ul li {
    border-left: 1px solid #E4E4E4;
    display: inline;
    list-style: none;
    margin-left: 0;
    padding: 0 0.5em;
}

.divlang ul li.firstlang {
    border-left: none;
    display: inline;
    list-style: none;
    margin-left: 0;
    padding-left: 0;
}

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

/* Hide "Try Beta" link */
li#pt-optin-try { display: none !important; }

/* Protected pages have text area in light red, to prevent
   accidental editing by admins who didn't notice the header
*/
.mw-textarea-protected, .ns-8 textarea {
  background: #FFDBDB;
}

/* Put a checkered background behind images, only visible if they have transparency */
.gallerybox .thumb img,
.filehistory a img,
#file img {
    background: white url("//upload.wikimedia.org/wikipedia/commons/5/5d/Checker-16x16.png") repeat;
}

/* 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. Shamelessly stolen from enWiki common.css ( http://en.wikipedia.org/w/index.php?title=MediaWiki:Common.css&oldid=376491996 )
 */
.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; }

/* For announcements */
#bodyContent .letterhead {
    background-image:url('//upload.wikimedia.org/wikipedia/commons/e/e0/Tan-page-corner.png');
    background-repeat:no-repeat;
    padding: 2em;
    background-color: #faf9f2;
}
/**
** Permits the use of div tags to suppress auto-numbering in TOC, for instance on [[Terms of use]] where sections are manually numbered.
**/
 
#hideTOCnumbers .tocnumber { display: none; }
 
:lang(fa) {
    font-family: Tahoma, 'DejaVu Sans', sans-serif;
}
 
/* Style for horizontal lists (separator following item) */
.skin-monobook .hlist dl,
.skin-modern .hlist dl,
.skin-vector .hlist dl {
    line-height: 1.5em;
}
.hlist dl,
.hlist ol,
.hlist ul {
    margin: 0;
}
.hlist dd,
.hlist dt,
.hlist li { 
    display: inline;
    margin: 0;
}
/* Display nested lists inline */
.hlist dl dl,
.hlist ol ol,
.hlist ul ul {
    display: inline;
}
/* Generate interpuncts */
.hlist dd:after,
.hlist dt:after,
.hlist li:after {
    content: " ·";
    font-weight: bold;
}
.hlist dd:last-child:after,
.hlist dt:last-child:after,
.hlist li:last-child:after {
    content: none;
}
/* for IE 8 */
.hlist dd.nopunct:after,
.hlist dt.nopunct:after,
.hlist li.nopunct:after {
    content: none;
}
/* Add parens around nested lists */
.hlist dl dl:before,
.hlist ol ol:before,
.hlist ul ul:before {
    content: "(";
}
.hlist dl dl:after,
.hlist ol ol:after,
.hlist ul ul:after {
    content: ")";
}
/* Put numbers in ordered lists */
.hlist.hnum ol li {
    counter-increment: level1;
}
.hlist.hnum ol li:before {
    content: counter(level1) " ";
}
.hlist.hnum ol ol li {
    counter-increment: level2;
}
.hlist.hnum ol ol li:before {
    content: counter(level2) " ";
}