[open-ils-commits] [GIT] Evergreen ILS branch master updated. b5a5c007d07d9b506f6d919729008aed0567a82f

Evergreen Git git at git.evergreen-ils.org
Wed Mar 21 10:01:59 EDT 2018


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Evergreen ILS".

The branch, master has been updated
       via  b5a5c007d07d9b506f6d919729008aed0567a82f (commit)
       via  3c3c2a0d57c1982514c2f90ba9196e017181b6d2 (commit)
      from  4d2774708a21fc2a8dea11f76826e0b41b299f06 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit b5a5c007d07d9b506f6d919729008aed0567a82f
Author: Kathy Lussier <klussier at masslnc.org>
Date:   Wed Mar 21 10:01:01 2018 -0400

    LP#1756572: Update to point release notes to include underlined links
    
    Signed-off-by: Kathy Lussier <klussier at masslnc.org>

diff --git a/docs/RELEASE_NOTES_2_12.adoc b/docs/RELEASE_NOTES_2_12.adoc
index 8b3f8aa..fddb133 100644
--- a/docs/RELEASE_NOTES_2_12.adoc
+++ b/docs/RELEASE_NOTES_2_12.adoc
@@ -15,8 +15,8 @@ syntax errors in reports that use virtual fields and joins.
 * Fixes an issue that created duplicate copy data when copies or
 volumes with parts were transferred.
 * Fixes an issue with the http -> https redirect on Apache 2.4.
-* Fixes an color contrast accessibility issue in the Web staff
-client.
+* Fixes a color contrast accessibility issue in the Web staff
+client and adds underlining to links in grids for added accessibility.
 * Adds automated regression and unit tests for the Web staff client
 reports module.
 
diff --git a/docs/RELEASE_NOTES_3_0.adoc b/docs/RELEASE_NOTES_3_0.adoc
index dff664f..c792844 100644
--- a/docs/RELEASE_NOTES_3_0.adoc
+++ b/docs/RELEASE_NOTES_3_0.adoc
@@ -22,7 +22,7 @@ syntax errors in reports that use virtual fields and joins.
 volumes with parts were transferred.
 * Fixes an issue with the http -> https redirect on Apache 2.4.
 * Fixes an color contrast accessibility issue in the Web staff
-client.
+client and adds underlining to links in grid cells for added accessibility.
 * Adds automated regression and unit tests for the Web staff client
 reports module.
 * Adds a process for spell-checking the official documentation.

commit 3c3c2a0d57c1982514c2f90ba9196e017181b6d2
Author: Galen Charlton <gmc at equinoxinitiative.org>
Date:   Sat Mar 17 13:38:01 2018 -0400

    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 <gmc at equinoxinitiative.org>
    Signed-off-by: Kathy Lussier <klussier at masslnc.org>

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

-----------------------------------------------------------------------

Summary of changes:
 Open-ILS/src/templates/staff/css/style.css.tt2 |   17 +++++++++++++----
 docs/RELEASE_NOTES_2_12.adoc                   |    4 ++--
 docs/RELEASE_NOTES_3_0.adoc                    |    2 +-
 3 files changed, 16 insertions(+), 7 deletions(-)


hooks/post-receive
-- 
Evergreen ILS


More information about the open-ils-commits mailing list