From: Kathy Lussier <klussier@masslnc.org>
Date: Tue, 6 Feb 2018 16:40:11 +0000 (-0500)
Subject: LP#1746365 Change default staff link colors to provide adequate contrast
X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=26112e44e1ccaeb702d413d64937b0f667a767f5;p=evergreen%2Fjoelewis.git

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 <klussier@masslnc.org>
Signed-off-by: Cesar Velez <cesar.velez@equinoxinitiative.org>
Signed-off-by: Galen Charlton <gmc@equinoxinitiative.org>
---

diff --git a/Open-ILS/src/templates/staff/css/style.css.tt2 b/Open-ILS/src/templates/staff/css/style.css.tt2
index 7d322755f0..f0b2fa6493 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;