From 673db575be7dd26972dbfc2c780575252ba73e6a 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 --- 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 5792e83c96..ec1beba812 100644 --- a/koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss +++ b/koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss @@ -3000,7 +3000,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.30.2