From ad3e2fec5eb0df1527287a609bd299563accc188 Mon Sep 17 00:00:00 2001 From: Martin Renvoize Date: Mon, 13 Jul 2020 11:57:31 +0100 Subject: [PATCH] Bug 25984: Add border highlight to anchor element Test Plan 1/ Search for an item 2/ Click through to the item 3/ Click the 'Browse shelf' button to expose the shelf browser 4/ Hit 'tab' on the keyboard to tab through the shelf browser 5/ Note each element is highlighted with a red border upon selection 6/ Ensure this is also the case for items where there is not cover image 7/ Signoff --- koha-tmpl/opac-tmpl/bootstrap/css/src/opac.scss | 2 ++ 1 file changed, 2 insertions(+) diff --git a/koha-tmpl/opac-tmpl/bootstrap/css/src/opac.scss b/koha-tmpl/opac-tmpl/bootstrap/css/src/opac.scss index c30901390e..443327f6e7 100644 --- a/koha-tmpl/opac-tmpl/bootstrap/css/src/opac.scss +++ b/koha-tmpl/opac-tmpl/bootstrap/css/src/opac.scss @@ -996,9 +996,11 @@ ul { a:visited { color: $links; } + a:focus, a:hover, a:active { color: $links-hover; + outline: 2px solid #FF0000; } } -- 2.20.1