shared.css clean up:
authorKrinkle <krinkle@users.mediawiki.org>
Wed, 28 Sep 2011 22:00:51 +0000 (22:00 +0000)
committerKrinkle <krinkle@users.mediawiki.org>
Wed, 28 Sep 2011 22:00:51 +0000 (22:00 +0000)
* Use background-color instead of background when possible (to support cascading rules and don't reset the entire thing)
* no parens around url()

skins/common/shared.css

index 959e3b0..638097b 100644 (file)
@@ -460,7 +460,7 @@ th.mw-revdel-checkbox {
 /* feed links */
 a.feedlink {
        /* @embed */
-       background: url("images/feed-icon.png") center left no-repeat;
+       background: url(images/feed-icon.png) center left no-repeat;
        padding-left: 16px;
 }
 
@@ -477,12 +477,13 @@ a.feedlink {
        unicode-bidi: embed;
 }
 
-/* wikitable class for skinning normal tables
- * keep on sync with commonPrint.css
+/**
+ * wikitable class for skinning normal tables
+ * keep in sync with commonPrint.css
  */
 table.wikitable {
        margin: 1em 1em 1em 0;
-       background: #f9f9f9;
+       background-color: #f9f9f9;
        border: 1px #aaa solid;
        border-collapse: collapse;
        color: black;
@@ -493,7 +494,7 @@ table.wikitable {
        padding: 0.2em;
 }
 .wikitable th {
-       background: #f2f2f2;
+       background-color: #f2f2f2;
        text-align: center;
 }
 .wikitable caption {