[open-ils-commits] [GIT] Evergreen ILS branch rel_3_0 updated. f27b5304cfc1b45dba74b13ac3f3764e9e83e5e3
Evergreen Git
git at git.evergreen-ils.org
Wed Mar 21 10:20:25 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_3_0 has been updated
via f27b5304cfc1b45dba74b13ac3f3764e9e83e5e3 (commit)
via 4c9f04314af8f4a20cff455c628061cb63ba6c3e (commit)
from 308603d12e20db9102e4e0f8ddaae310addf257d (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 f27b5304cfc1b45dba74b13ac3f3764e9e83e5e3
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 4c9f04314af8f4a20cff455c628061cb63ba6c3e
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 000ab16..6e04a64 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%;
-----------------------------------------------------------------------
Summary of changes:
Open-ILS/src/templates/staff/css/style.css.tt2 | 15 ++++++++++++---
docs/RELEASE_NOTES_2_12.adoc | 4 ++--
docs/RELEASE_NOTES_3_0.adoc | 2 +-
3 files changed, 15 insertions(+), 6 deletions(-)
hooks/post-receive
--
Evergreen ILS
More information about the open-ils-commits
mailing list