From ee079096357bc376d61a3abbbece344624467ce3 Mon Sep 17 00:00:00 2001 From: Kathy Lussier Date: Tue, 6 Feb 2018 11:40:11 -0500 Subject: [PATCH] LP#1746365 Change default staff link colors to provide adequate contrast The default link color from bootstrap works well on white backgrounds, but doesn't provide adequate contrast once the background color is changed. This introduces accessbility problems, particularly in cases where linked text displays on a selected grid row that uses a light blue background color. This change provides a darker default link color. Signed-off-by: Kathy Lussier Signed-off-by: Cesar Velez Signed-off-by: Galen Charlton --- Open-ILS/src/templates/staff/css/style.css.tt2 | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Open-ILS/src/templates/staff/css/style.css.tt2 b/Open-ILS/src/templates/staff/css/style.css.tt2 index 74cf439656..000ab16ee6 100644 --- a/Open-ILS/src/templates/staff/css/style.css.tt2 +++ b/Open-ILS/src/templates/staff/css/style.css.tt2 @@ -90,6 +90,13 @@ * Local style */ +/* change default link color to provide adequate contrast */ + +a { + color: #286090; +} + + /* no bootstrap way to directly disable a link. */ a.disabled { pointer-events: none; -- 2.11.0