MediaWiki:Common.css: Difference between revisions

From SCA Lochac
Jump to navigation Jump to search
No edit summary
No edit summary
Line 7: Line 7:
}
}


#mw-content-text h2 {
.rulesNumbering h2 {
   counter-increment: h2Counter;
   counter-increment: h2Counter;
   counter-reset: h3Counter;
   counter-reset: h3Counter;
}
}
#mw-content-text h2:before {
.rulesNumbering h2:before {
   content: counter(h2Counter) " ";
   content: counter(h2Counter) " ";
}
}
Line 17: Line 17:
   content: none;
   content: none;
}
}
#mw-content-text h2+ol, h2+*+ol {
.rulesNumbering h2+ol, h2+*+ol {
   counter-reset: h2LiCounter;
   counter-reset: h2LiCounter;
   list-style-type: none;
   list-style-type: none;
}
}
#mw-content-text h2+ol>li:before, h2+*+ol>li:before{
.rulesNumbering h2+ol>li:before, h2+*+ol>li:before{
   list-style-type: none;
   list-style-type: none;
   counter-increment: h2LiCounter;
   counter-increment: h2LiCounter;
   content: counter(h2Counter) "." counter(h2LiCounter) " ";
   content: counter(h2Counter) "." counter(h2LiCounter) " ";
}
}
#mw-content-text h2+ol>li, h2+*+ol>li{
.rulesNumbering h2+ol>li, h2+*+ol>li{
   padding-left: 2em;
   padding-left: 2em;
   text-indent: -2em;
   text-indent: -2em;
}
}
#mw-content-text h3 {
.rulesNumbering h3 {
   counter-increment: h3Counter;
   counter-increment: h3Counter;
}
}
#mw-content-text h3:before {
.rulesNumbering h3:before {
   content: counter(h2Counter) "." counter(h3Counter) " ";
   content: counter(h2Counter) "." counter(h3Counter) " ";
}
}
#mw-content-text h3+ol {
.rulesNumbering h3+ol {
   counter-reset: h3LiCounter;
   counter-reset: h3LiCounter;
   list-style-type: none;
   list-style-type: none;
}
}
#mw-content-text h3+ol>li:before {
.rulesNumbering h3+ol>li:before {
   list-style-type: none;
   list-style-type: none;
   counter-increment: h3LiCounter;
   counter-increment: h3LiCounter;
   content: counter(h2Counter) "." counter(h3Counter) "." counter(h3LiCounter) " ";
   content: counter(h2Counter) "." counter(h3Counter) "." counter(h3LiCounter) " ";
}
}
#mw-content-text h3+ol>li{
.rulesNumbering h3+ol>li{
   padding-left: 3em;
   padding-left: 3em;
   text-indent: -3em;
   text-indent: -3em;
}
}


#mw-content-text ul>li {
.rulesNumbering ul>li {
   text-indent: 0px;
   text-indent: 0px;
}
}

Revision as of 09:37, 11 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) " ";
}
#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;
}