MediaWiki:Common.css: Difference between revisions

from HTYP, the free directory anyone can edit if they can prove to me that they're not a spambot
one status style to start with
busy status
Line 13: Line 13:
.stat-ok {
.stat-ok {
   background-color: #44ff44;
   background-color: #44ff44;
}
.stat-busy {
  background-color: #ffff44;
}
}

Revision as of 20:50, 15 April 2014

/* CSS placed here will be applied to all skins */
ol {
  counter-reset: listNum;
  list-style-type: none;
}

ol > li:before {
  counter-increment: listNum;
  content: counters(listNum, ".") ".";
}

  /* status styles */
.stat-ok {
  background-color: #44ff44;
}
.stat-busy {
  background-color: #ffff44;
}