From b539252cd8b8a11d06b96ddf0c6c8e67ab771e35 Mon Sep 17 00:00:00 2001 From: Bill Erickson Date: Thu, 29 Jun 2017 10:58:05 -0400 Subject: [PATCH] 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 --- KCLS/openils/var/templates_kcls/opac/register.tt2 | 10 ++++++++++ 1 file changed, 10 insertions(+) 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; +} + -- 2.11.0