From 1c90a1de87731e69966cd7ca39d10a11a1a0db80 Mon Sep 17 00:00:00 2001 From: Denis Flaven Date: Wed, 6 Jan 2010 19:39:03 +0000 Subject: [PATCH] - Fixing styles issues found on the truncated lists (Ticket #61) SVN:trunk[228] --- css/light-grey.css | 4 ++++ js/utils.js | 1 + 2 files changed, 5 insertions(+) diff --git a/css/light-grey.css b/css/light-grey.css index ac9df52d8..ea901d9fe 100644 --- a/css/light-grey.css +++ b/css/light-grey.css @@ -680,6 +680,10 @@ table.listResults tr.even td.truncated.hover { background: #E8FFD3 url(../images/truncated.png) bottom repeat-x; } +table.listResults tr.odd td.truncated.hover { + background: #E8FFD3 url(../images/truncated.png) bottom repeat-x; +} + table.listResults.truncated { border-bottom: 0; padding-bottom: 0; diff --git a/js/utils.js b/js/utils.js index 7efa4a208..0f2e795ab 100644 --- a/js/utils.js +++ b/js/utils.js @@ -12,6 +12,7 @@ function ReloadTruncatedList(divId, sSerializedFilter, sExtraParams) $('#'+divId).empty(); $('#'+divId).append(data); $('#'+divId).removeClass('loading'); + $('#'+divId+' .listResults').tableHover(); // hover tables $('#'+divId+' .listResults').tablesorter( { headers: { 0:{sorter: false }}, widgets: ['zebra']} ); // sortable and zebra tables //$('#'+divId).unblockUI(); }