MediaWiki:Common.css

From SCA Lochac
Revision as of 05:41, 11 April 2018 by Morat (talk | contribs)
Jump to navigation Jump to search

Note: After publishing, you may have to bypass your browser's cache to see the changes.

  • Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
  • Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
  • Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Press Ctrl-F5.
/* 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) " ";
}
#toctitle h2:before {
  content: none;
}
#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 h2~ol>li{
  padding-left: 2em;
  text-indent: -2em;
}
#mw-content-text h3 {
  counter-increment: h3Counter;
}
#mw-content-text h3:before {
  content: counter(h2Counter) "." counter(h3Counter) " ";
}
#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) " ";
}
#mw-content-text h3~ol>li{
  padding-left: 3em;
  text-indent: -3em;
}

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