[open-ils-commits] [GIT] Evergreen ILS branch rel_2_12 updated. db92c6c1eb60ff089b8ef7f4e588030fa1617a8e
Evergreen Git
git at git.evergreen-ils.org
Wed Mar 21 10:23:30 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, rel_2_12 has been updated
via db92c6c1eb60ff089b8ef7f4e588030fa1617a8e (commit)
via 5432b151d462b99ba467c6f6970ec843f2ac9706 (commit)
from 95825cd9ff6f78d018c6814564a047f5c217bea8 (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 db92c6c1eb60ff089b8ef7f4e588030fa1617a8e
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>
Conflicts:
docs/RELEASE_NOTES_3_0.adoc
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.
commit 5432b151d462b99ba467c6f6970ec843f2ac9706
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>
Conflicts:
Open-ILS/src/templates/staff/css/style.css.tt2
diff --git a/Open-ILS/src/templates/staff/css/style.css.tt2 b/Open-ILS/src/templates/staff/css/style.css.tt2
index f4ac76f..f487070 100644
--- a/Open-ILS/src/templates/staff/css/style.css.tt2
+++ b/Open-ILS/src/templates/staff/css/style.css.tt2
@@ -55,6 +55,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
*/
@@ -304,7 +310,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;
}
@@ -325,15 +331,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%;
-----------------------------------------------------------------------
Summary of changes:
Open-ILS/src/templates/staff/css/style.css.tt2 | 15 ++++++++++++---
docs/RELEASE_NOTES_2_12.adoc | 4 ++--
2 files changed, 14 insertions(+), 5 deletions(-)
hooks/post-receive
--
Evergreen ILS
More information about the open-ils-commits
mailing list