From b133d35b391cd5c9899c40b8cf547d5516204902 Mon Sep 17 00:00:00 2001 From: Wainui Witika-Park Date: Mon, 19 Apr 2021 00:35:05 +0000 Subject: [PATCH] Bug 28101: changed styling for breadcrumbs Updates opac.scss file so the breadcrumbs will appear the same as Bug 27846 (Staff Client breadcrumbs). This works but the file may need to be changed/cleaned up so that there is not unnecessary information in it. Sponsored-by: Catalyst IT Signed-off-by: Owen Leonard --- .../opac-tmpl/bootstrap/css/src/opac.scss | 37 +++++++++++++++++++ 1 file changed, 37 insertions(+) diff --git a/koha-tmpl/opac-tmpl/bootstrap/css/src/opac.scss b/koha-tmpl/opac-tmpl/bootstrap/css/src/opac.scss index c665cfea5d..ff84a764c0 100644 --- a/koha-tmpl/opac-tmpl/bootstrap/css/src/opac.scss +++ b/koha-tmpl/opac-tmpl/bootstrap/css/src/opac.scss @@ -1252,6 +1252,43 @@ nav { top: unset; } } + + background: #E6F0F2 none; + border: 0; + + &.breadcrumb { + background-color: #F0F3F3; + font-size: 85%; + list-style: none outside none; + margin: 15px; + padding: 5px 10px; + border-radius: 0px; + + ol { + margin: 0; + padding-left: 0; + list-style: none; + } + + li { + display: inline; + + &+li::before { + background: transparent url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiIgZmlsbD0iY3VycmVudENvbG9yIiBjbGFzcz0iYmkgYmktY2hldnJvbi1yaWdodCI+PHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBkPSJNNy4zNyAwbDUuMzUgNy4zYy4yLjIuMi41MSAwIC43bC01LjM4IDhoLTQuMmw1LjY0LTguMzVMMy4xMy4wMXoiLz48L3N2Zz4=") 50% 50% no-repeat; + background-size: 8px; + content: ''; + display: inline-block; + height: .8em; + width: .8em; + } + } + + [aria-current="page"] { + color: #000; + font-weight: 700; + text-decoration: none; + } + } } .nav_pages { -- 2.20.1