From 5159f655993c26a3219158cb3c61704387ec0226 Mon Sep 17 00:00:00 2001 From: Valentin Deniaud Date: Tue, 23 Feb 2021 17:11:23 +0100 Subject: [PATCH] templates: improve color contrast in csv import report (#50162) --- .../manager/static/authentic2/manager/css/user_import.css | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/authentic2/manager/static/authentic2/manager/css/user_import.css b/src/authentic2/manager/static/authentic2/manager/css/user_import.css index 7b0cdfa6..f628ef8c 100644 --- a/src/authentic2/manager/static/authentic2/manager/css/user_import.css +++ b/src/authentic2/manager/static/authentic2/manager/css/user_import.css @@ -1,9 +1,13 @@ +#import-report-table { + color: black; +} + #import-report-table tr.row-valid td, .legend-row-valid { background-color: #d5f5e3 ; } #import-report-table tr.row-invalid td, .legend-row-invalid { - background-color: #ff4408; + background-color: #e00; } #import-report-table tr td.cell-action-updated, .legend-cell-action-updated { -- 2.20.1