From 07214dabd308897f378e567be7633d6baee31226 Mon Sep 17 00:00:00 2001 From: Allan Jardine Date: Sat, 2 Apr 2022 07:46:06 +0000 Subject: [PATCH] Fix: jQuery UI styling had transparent cells for fixed columns without ordering DD-2514 --- css/fixedColumns.jqueryui.scss | 23 +++++++++++++++++++---- 1 file changed, 19 insertions(+), 4 deletions(-) diff --git a/css/fixedColumns.jqueryui.scss b/css/fixedColumns.jqueryui.scss index c8fc460..23192bc 100644 --- a/css/fixedColumns.jqueryui.scss +++ b/css/fixedColumns.jqueryui.scss @@ -1,8 +1,23 @@ table.dataTable{ - th{ - background-color: rgb(246, 246, 246) !important; - z-index: 1; - } + thead, + tfoot { + th{ + background-color: rgb(246, 246, 246) !important; + z-index: 1; + } + } + + tr.even td { + background-color: #ffffff; + } + + tr.odd td { + background-color: #f9f9f9; + } + + tr.selected td { + background-color: #a6b4cd; + } } div.dtfc-right-top-blocker {