MediaWiki:Common.css: Difference between revisions

From SCA Lochac
Jump to navigation Jump to search
No edit summary
No edit summary
Line 9: Line 9:
   counter-increment: h2Counter;
   counter-increment: h2Counter;
   counter-reset: h3Counter;
   counter-reset: h3Counter;
}
#mw-content-text h2:before {
  content: counter(h2Counter) " ";
}
}
#mw-content-text h2+ol {
#mw-content-text h2+ol {
Line 21: Line 24:
#mw-content-text h3 {
#mw-content-text h3 {
   counter-increment: h3Counter;
   counter-increment: h3Counter;
}
#mw-content-text h3:before {
  content: counter(h2Counter) "." counter(h2Counter) " ";
}
}
#mw-content-text h3+ol {
#mw-content-text h3+ol {

Revision as of 04:45, 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:before {
  content: counter(h2Counter) " ";
}
#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) " ";
} 
#mw-content-text h3 {
  counter-increment: h3Counter;
}
#mw-content-text h3:before {
  content: counter(h2Counter) "." counter(h2Counter) " ";
}
#mw-content-text h3+ol {
  counter-reset: h3LiCounter;
  list-style-type: none;
}
#mw-content-text h3+ol>li:before {
  list-style-type: none;
  counter-increment: h3LiCounter;
  content: counter(h2Counter) "." counter(h3Counter) "." counter(h3LiCounter) " ";
}