From: Bill Erickson Date: Thu, 29 Jun 2017 14:58:05 +0000 (-0400) Subject: JBAS-1817 Hide BC screen reader links via local CSS X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=b539252cd8b8a11d06b96ddf0c6c8e67ab771e35;p=working%2FEvergreen.git JBAS-1817 Hide BC screen reader links via local CSS BC screen reader links are not hidden as expected using only the code delivered by their API. Add some custom local CSS to hide them. Signed-off-by: Bill Erickson --- diff --git a/KCLS/openils/var/templates_kcls/opac/register.tt2 b/KCLS/openils/var/templates_kcls/opac/register.tt2 index 45c803c787..772f7465b9 100644 --- a/KCLS/openils/var/templates_kcls/opac/register.tt2 +++ b/KCLS/openils/var/templates_kcls/opac/register.tt2 @@ -202,6 +202,16 @@ END; # input_field() padding: 8px; border: 1px solid black; } + +/* BC screen reader links are not correctly hidden via their API. + Add some additional CSS to hide them */ +.screen_reader_nav { + position: absolute; + top: -1000px; + left: -1000px; + z-index: 0; +} +