From 4c9f04314af8f4a20cff455c628061cb63ba6c3e Mon Sep 17 00:00:00 2001 From: Galen Charlton Date: Sat, 17 Mar 2018 13:38:01 -0400 Subject: [PATCH] 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 Conflicts: Open-ILS/src/templates/staff/css/style.css.tt2 --- Open-ILS/src/templates/staff/css/style.css.tt2 | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/Open-ILS/src/templates/staff/css/style.css.tt2 b/Open-ILS/src/templates/staff/css/style.css.tt2 index 000ab16ee6..6e04a641b5 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 */ @@ -295,7 +301,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; } @@ -316,15 +322,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%; -- 2.43.2