From 6cb21858c37c05b0bff9b463169f981ec9104eb7 Mon Sep 17 00:00:00 2001 From: Kathy Lussier Date: Tue, 30 Jan 2018 15:51:13 -0500 Subject: [PATCH] LP#1635386: Improve contrast for colors used in Bills interface The contrast between cell contents and background colors did not meet WCAG standards. This commit provides adequate contrast to meet AA level of WCAG standards. The red and dark red background colors are similar to what we saw in the XUL client. The orange for long overdue is much lighter. Signed-off-by: Kathy Lussier --- Open-ILS/src/templates/staff/css/style.css.tt2 | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/Open-ILS/src/templates/staff/css/style.css.tt2 b/Open-ILS/src/templates/staff/css/style.css.tt2 index c67282d222..60ce3a9f00 100644 --- a/Open-ILS/src/templates/staff/css/style.css.tt2 +++ b/Open-ILS/src/templates/staff/css/style.css.tt2 @@ -327,21 +327,25 @@ table.list tr.selected td { /* deprecated? */ /* patron bill row-highlighting */ .red-row-highlight { color: #FFF; - background-color: #FF0000; + background-color: #EB0000; +} +.red-row-highlight a:link, .dark-red-row-highlight a:link { + color: #B8ECFF; } .orange-row-highlight { - color: #FFF; - background-color: #FFA500 ; + color: #000; + background-color: #FFE1A8; } .dark-red-row-highlight { color: #FFF; background-color: #800000; + } .eg-grid-row-selected .red-row-highlight { background-color: #CF0000; } .eg-grid-row-selected .orange-row-highlight { - background-color: #DE9000; + background-color: #FFCF75; } .eg-grid-row-selected .dark-red-row-highlight { background-color: #5C0000; -- 2.11.0