MediaWiki:Common.css: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
| Line 1: | Line 1: | ||
/* CSS placed here will be applied to all skins */ | /* CSS placed here will be applied to all skins */ | ||
/* section-based ol numbering*/ | |||
body { | |||
counter-reset: h2Counter; | |||
#mw-content-text ol { | counter-reset: h3Counter; | ||
counter-reset: | } | ||
#mw-content-text h2 { | |||
counter-increment: h2Counter; | |||
counter-reset: h3Counter; | |||
} | |||
#mw-content-text h2>ol { | |||
counter-reset: h2LiCounter; | |||
list-style-type: none; | list-style-type: none; | ||
} | } | ||
#mw-content-text li:before { | #mw-content-text h2>ol>li:before { | ||
list-style-type: none; | list-style-type: none; | ||
counter-increment: | counter-increment: h2LiCounter; | ||
content: | content: counter(h2Counter) "." counter(h2LiCounter) " "; | ||
} | } | ||
*/ | */ | ||
Revision as of 04:26, 11 April 2018
/* CSS placed here will be applied to all skins */
/* section-based ol numbering*/
body {
counter-reset: h2Counter;
counter-reset: h3Counter;
}
#mw-content-text h2 {
counter-increment: h2Counter;
counter-reset: h3Counter;
}
#mw-content-text h2>ol {
counter-reset: h2LiCounter;
list-style-type: none;
}
#mw-content-text h2>ol>li:before {
list-style-type: none;
counter-increment: h2LiCounter;
content: counter(h2Counter) "." counter(h2LiCounter) " ";
}
*/