MediaWiki:Common.css: Difference between revisions
Jump to navigation
Jump to search
mNo edit summary |
No edit summary |
||
| Line 15: | Line 15: | ||
} | } | ||
/* this is required to stop the 'contents' heading in the ToC from becoming '1 contents' | /* this is required to stop the 'contents' heading in the ToC from becoming '1 contents' */ | ||
#toctitle h2:before { | #toctitle h2:before { | ||
content: none; | content: none; | ||
Revision as of 08:17, 26 April 2018
/* CSS placed here will be applied to all skins */
/* section-based ol numbering*/
body {
counter-reset: h2Counter;
counter-reset: h3Counter;
}
.rulesNumbering h2 {
counter-increment: h2Counter;
counter-reset: h3Counter;
}
.rulesNumbering h2:before {
content: counter(h2Counter) " ";
}
/* this is required to stop the 'contents' heading in the ToC from becoming '1 contents' */
#toctitle h2:before {
content: none;
}
.rulesNumbering h2+ol, h2+*+ol {
counter-reset: h2LiCounter;
list-style-type: none;
}
.rulesNumbering h2+ol>li:before, h2+*+ol>li:before{
list-style-type: none;
counter-increment: h2LiCounter;
content: counter(h2Counter) "." counter(h2LiCounter) " ";
}
.rulesNumbering h2+ol>li, h2+*+ol>li{
padding-left: 2em;
text-indent: -2em;
}
.rulesNumbering h3 {
counter-increment: h3Counter;
}
.rulesNumbering h3:before {
content: counter(h2Counter) "." counter(h3Counter) " ";
}
.rulesNumbering h3+ol {
counter-reset: h3LiCounter;
list-style-type: none;
}
.rulesNumbering h3+ol>li:before {
list-style-type: none;
counter-increment: h3LiCounter;
content: counter(h2Counter) "." counter(h3Counter) "." counter(h3LiCounter) " ";
}
.rulesNumbering h3+ol>li{
padding-left: 3em;
text-indent: -3em;
}
.rulesNumbering ul>li {
text-indent: 0px;
}