From 717c35e2df0f6f80b78db47c8da78516ac610fb3 Mon Sep 17 00:00:00 2001 From: Derk-Jan Hartman Date: Sat, 8 Oct 2011 12:59:36 +0000 Subject: [PATCH] Add !important to the tablesorter indicator. Otherwise it is too easy to do and kill the entire indicator. Fixes bug 31196 and follow up to r98665 --- resources/jquery/jquery.tablesorter.css | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/resources/jquery/jquery.tablesorter.css b/resources/jquery/jquery.tablesorter.css index a88acc0909..87719810ba 100644 --- a/resources/jquery/jquery.tablesorter.css +++ b/resources/jquery/jquery.tablesorter.css @@ -1,17 +1,17 @@ /* Table Sorting */ table.jquery-tablesorter th.headerSort { /* @embed */ - background-image: url(images/sort_both.gif); + background-image: url(images/sort_both.gif) !important; cursor: pointer; - background-repeat: no-repeat; - background-position: center right; - padding-right: 21px; + background-repeat: no-repeat !important; + background-position: center right !important; + padding-right: 21px !important; } table.jquery-tablesorter th.headerSortUp { /* @embed */ - background-image: url(images/sort_up.gif); + background-image: url(images/sort_up.gif) !important; } table.jquery-tablesorter th.headerSortDown { /* @embed */ - background-image: url(images/sort_down.gif); + background-image: url(images/sort_down.gif) !important; } -- 2.20.1