From 0331427a34640dfe1b9dd866332a549ef1cfe953 Mon Sep 17 00:00:00 2001 From: Derk-Jan Hartman Date: Sun, 25 Sep 2011 17:26:33 +0000 Subject: [PATCH] Raise the specificity of the sortable header. Many installations have something like: table.wikitable th {background:color;} which would override the background of the sortable header. --- skins/common/shared.css | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/skins/common/shared.css b/skins/common/shared.css index f80f8ad793..959e3b01eb 100644 --- a/skins/common/shared.css +++ b/skins/common/shared.css @@ -925,17 +925,17 @@ ol:lang(or) li { background-position: 0% 100%; } /* Table Sorting */ -th.headerSort { +table.sortable th.headerSort { background-image: url(images/sort_both.gif); cursor: pointer; background-repeat: no-repeat; background-position: center right; padding-right: 21px; } -th.headerSortUp { +table.sortable th.headerSortUp { background-image: url(images/sort_up.gif); } -th.headerSortDown { +table.sortable th.headerSortDown { background-image: url(images/sort_down.gif); } -- 2.20.1