From 9bae5bd1e4ec904e1a1df629e433136891ba93d8 Mon Sep 17 00:00:00 2001 From: Martin Renvoize Date: Wed, 24 Mar 2021 13:21:18 +0000 Subject: [PATCH] Bug 27846: (follow-up) Restore `>` symbol This patch restores the original look but uses css ::before to insert the symbol. This, for me, appears to resolve the previous issue that screen readers would anounce the character which is what the change to a slanted border was achieving. Signed-off-by: Martin Renvoize --- koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss b/koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss index 478b513ca1..1684d99152 100644 --- a/koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss +++ b/koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss @@ -3140,12 +3140,10 @@ nav { display: inline; &+li::before { + content: "\203A"; display: inline-block; - margin: 0 0.25em; - transform: rotate(15deg); - border-right: 0.1em solid currentColor; - height: 0.8em; - content: ''; + font-weight: normal; + padding: 0 0.1rem; } } -- 2.20.1