From c06922e75c749ee23f7cb5605dfd481736c37dc5 Mon Sep 17 00:00:00 2001 From: Owen Leonard Date: Tue, 15 Nov 2022 19:23:01 +0000 Subject: [PATCH] Bug 31751: Breadcrumb style This patch updates the breadcrumb style to use the old caret icon instead of a slash. I've left the italic because I think it works well to set the text off from the normal text above, in the search bar, and below in the main body of the page. To test, apply the patch and rebuild the staff interface CSS. Look at various pages in the staff interface and check the style of the breadcrumbs menu. Signed-off-by: David Nind Signed-off-by: Tomas Cohen Arazi --- koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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 ef9036cd977..054b6bf3a86 100644 --- a/koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss +++ b/koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss @@ -2912,7 +2912,9 @@ nav { font-style: italic; &+li::before { - content: '/'; + 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; -- 2.38.1