From: Galen Charlton Date: Sat, 17 Mar 2018 17:38:01 +0000 (-0400) Subject: LP#1756572: accessibility tweaks to links in webstaff client X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=3c3c2a0d57c1982514c2f90ba9196e017181b6d2;p=evergreen%2Fequinox.git LP#1756572: accessibility tweaks to links in webstaff client 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 Signed-off-by: Kathy Lussier --- diff --git a/Open-ILS/src/templates/staff/css/style.css.tt2 b/Open-ILS/src/templates/staff/css/style.css.tt2 index f0b2fa6493..cc971aba50 100644 --- a/Open-ILS/src/templates/staff/css/style.css.tt2 +++ b/Open-ILS/src/templates/staff/css/style.css.tt2 @@ -32,6 +32,12 @@ 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; }