Thanks! :D
I thought I copied that from shared.css, but obviously I forgot the commas. That explains a lot!

Am 31.05.2012 19:48, schrieb Bartosz Dziewoński:
This is invalid CSS. You separate the selectos with a comma, not with
a newline. So instead of:

  table.wikitable>   tr>   th
  table.wikitable>   tr>   td
  table.wikitable>   *>   tr>   th
  table.wikitable>   *>   tr>   td {
     border: 1px #cccc99 solid;
     padding: 0.2em;
  }

do

  table.wikitable>   tr>   th,
  table.wikitable>   tr>   td,
  table.wikitable>   *>   tr>   th,
  table.wikitable>   *>   tr>   td {
     border: 1px #cccc99 solid;
     padding: 0.2em;
  }

etc.

-- Matma Rex

_______________________________________________
MediaWiki-l mailing list
[email protected]
https://lists.wikimedia.org/mailman/listinfo/mediawiki-l



_______________________________________________
MediaWiki-l mailing list
[email protected]
https://lists.wikimedia.org/mailman/listinfo/mediawiki-l

Reply via email to