Revert r99307 and its friend r99309, improper use of !important per CR
authorRoan Kattouw <catrope@users.mediawiki.org>
Tue, 8 Nov 2011 21:38:06 +0000 (21:38 +0000)
committerRoan Kattouw <catrope@users.mediawiki.org>
Tue, 8 Nov 2011 21:38:06 +0000 (21:38 +0000)
resources/jquery/jquery.tablesorter.css

index c31760a..a88acc0 100644 (file)
@@ -1,21 +1,17 @@
-/*
- * The !important is to make sure someone doesn't use element styling
- * to set the background or padding of a headercell and
- * accidently override all these options.
- */
+/* Table Sorting */
 table.jquery-tablesorter th.headerSort {
        /* @embed */
-       background-image: url(images/sort_both.gif) !important;
+       background-image: url(images/sort_both.gif);
        cursor: pointer;
-       background-repeat: no-repeat !important;
-       background-position: center right !important;
-       padding-right: 21px !important;
+       background-repeat: no-repeat;
+       background-position: center right;
+       padding-right: 21px;
 }
 table.jquery-tablesorter th.headerSortUp {
        /* @embed */
-       background-image: url(images/sort_up.gif) !important;
+       background-image: url(images/sort_up.gif);
 }
 table.jquery-tablesorter th.headerSortDown {
        /* @embed */
-       background-image: url(images/sort_down.gif) !important;
+       background-image: url(images/sort_down.gif);
 }