From ce2e559c4b4c2a79864035a53b5ff322d1237e03 Mon Sep 17 00:00:00 2001 From: Wainui Witika-Park Date: Tue, 2 Mar 2021 10:13:06 +0000 Subject: [PATCH] Bug 27846: changed scss for breadcrumbs changed styling for breadcrumbs to be accessible Sponsored-by: Catalyst IT Signed-off-by: Owen Leonard --- .../intranet-tmpl/prog/css/src/staff-global.scss | 33 ++++++++++++++++++++++ 1 file changed, 33 insertions(+) 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 ed2a495237..92a97fdf5f 100644 --- a/koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss +++ b/koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss @@ -1023,6 +1023,39 @@ details[open] { } } +nav.breadcrumb { + background-color: #E6F0F2; + clear: both; + margin: 0; + padding: .8em .5em .8em 10px; + position: relative; +} + +nav.breadcrumb ol { + margin: 0; + padding-left: 0; + list-style: none; +} + +nav.breadcrumb li { + display: inline; +} + +nav.breadcrumb li + li::before { + display: inline-block; + margin: 0 0.25em; + transform: rotate(15deg); + border-right: 0.1em solid currentColor; + height: 0.8em; + content: ''; +} + +nav.breadcrumb [aria-current="page"] { + color: #000; + font-weight: 700; + text-decoration: none; +} + #header { + #breadcrumbs { margin-top: 1em; -- 2.11.0