From: Derk-Jan Hartman Date: Sat, 8 Oct 2011 12:59:36 +0000 (+0000) Subject: Add !important to the tablesorter indicator. X-Git-Tag: 1.31.0-rc.0~27190 X-Git-Url: https://git.cyclocoop.org/%7B%24www_url%7Dadmin/compta/banques/ajouter.php?a=commitdiff_plain;h=717c35e2df0f6f80b78db47c8da78516ac610fb3;p=lhc%2Fweb%2Fwiklou.git 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 --- 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; }