From d2dfd5260e05a9cc57ff143cbc8e8dbb0c3d3e9a Mon Sep 17 00:00:00 2001 From: Craig Williams Date: Thu, 19 Feb 2026 08:55:55 +0000 Subject: [PATCH] Change table selection colour --- inst/www/css/mnr.css | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/inst/www/css/mnr.css b/inst/www/css/mnr.css index bac7ae5..7432932 100644 --- a/inst/www/css/mnr.css +++ b/inst/www/css/mnr.css @@ -87,17 +87,20 @@ h6 { .table.dataTable > tbody > td.active, .table.dataTable > tbody > tr.active td { - background-color: #3f9c35 !important; + color: #000000 !important; + background-color: #6bc961 !important; } table.dataTable > tbody > tr.selected > * { - box-shadow: inset 0 0 0 9999px #3f9c35 !important; + color: #000000 !important; + box-shadow: inset 0 0 0 9999px #6bc961 !important; } table.dataTable.hover > tbody > tr.even.selected:hover > *, table.dataTable.display > tbody > tr.even.selected:hover > *, table.dataTable.hover > tbody > tr.odd.selected:hover > *, table.dataTable.display > tbody > tr.odd.selected:hover > * { + color: #FFFFFF !important; box-shadow: inset 0 0 0 9999px #44a939 !important; }