Difference between revisions of "MediaWiki/Common.css"
(Created page with "table.zebra tr:nth-child(odd) {background: #E9E9E9;} →Style for horizontal lists (separator following item): .skin-monobook .hlist dl, .skin-modern .hlist dl, .skin-vec...") |
|||
Line 1: | Line 1: | ||
+ | #jump-to-nav { | ||
+ | display: none; | ||
+ | } | ||
table.zebra tr:nth-child(odd) {background: #E9E9E9;} | table.zebra tr:nth-child(odd) {background: #E9E9E9;} | ||
Latest revision as of 13:47, 26 June 2014
- jump-to-nav {
display: none; } table.zebra tr:nth-child(odd) {background: #E9E9E9;}
/* 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 dt:after {
content: ":";
} .hlist dd: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.hlist-last-child:after, .hlist dt.hlist-last-child:after, .hlist li.hlist-last-child:after {
content: none;
} /* Add parens around nested lists */ .hlist dl dl dd:first-child:before, .hlist ol ol li:first-child:before, .hlist ul ul li:first-child:before {
content: "(";
} .hlist dl dl dd:last-child:after, .hlist ol ol li:last-child:after, .hlist ul ul li:last-child:after {
content: ")"; font-weight: normal;
} /* For IE8 */ .hlist dl dl dd.hlist-last-child:after, .hlist ol ol li.hlist-last-child:after, .hlist ul ul li.hlist-last-child:after {
content: ")"; font-weight: normal;
} /* 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:first-child:before {
content: "(" counter(level2) " ";
} .hlist.hnum ol ol li:before {
content: counter(level2) " ";
}