LP#1756572: accessibility tweaks to links in webstaff client
authorGalen Charlton <gmc@equinoxinitiative.org>
Sat, 17 Mar 2018 17:38:01 +0000 (13:38 -0400)
committerKathy Lussier <klussier@masslnc.org>
Wed, 21 Mar 2018 13:58:17 +0000 (09:58 -0400)
This patch changes the default
text color of text inside egGrid cells to #000; changes the default text
color to #000 (but note that more work would be needed to do this
comprehensively); and adds underlines to links inside grid cells.

Signed-off-by: Galen Charlton <gmc@equinoxinitiative.org>
Signed-off-by: Kathy Lussier <klussier@masslnc.org>
Open-ILS/src/templates/staff/css/style.css.tt2

index f0b2fa6..cc971ab 100644 (file)
   color: rgb(92, 184, 92); /* success */
 }
 
+body {
+    color: #000; /* note: this is not comprehensive; changing Bootstrap's
+                    default text color from #333 to #000 would require
+                    more work */
+}
+
 /* --------------------------------------------------------------------------
  * Structural modifications
  */
@@ -299,7 +305,7 @@ table.list tr.selected td { /* deprecated? */
 }
 
 .eg-grid-row-selected {
-  color: rgb(51, 51, 51);
+  color: #000;
   background-color: rgb(201, 221, 225);
   border-bottom: 1px solid #888;
 }
@@ -320,15 +326,18 @@ table.list tr.selected td { /* deprecated? */
   -webkit-user-select: text;
 }
 .eg-grid-cell-content::-moz-selection {
-  color: rgb(51, 51, 51);
+  color: #000;
   background: rgb(201, 221, 225);
   border-bottom: 1px solid #888;
 }
 .eg-grid-cell-content::selection {
-  color: rgb(51, 51, 51);
+  color: #000;
   background: rgb(201, 221, 225);
   border-bottom: 1px solid #888;
 }
+.eg-grid-cell-content a {
+  text-decoration: underline;
+}
 
 .eg-grid-conf-cell-entry {
   width:98%;
@@ -495,7 +504,7 @@ table.list tr.selected td { /* deprecated? */
 }
 
 .eg-grid-columns-modal-body .visible {
-  color: rgb(51, 51, 51);
+  color: #000;
   background-color: rgb(201, 221, 225);
   border-bottom: 1px solid #888;
 }