From 2a832bc7cc8eece8417c70554785bcd70e8c58dc Mon Sep 17 00:00:00 2001 From: Owen Leonard Date: Mon, 9 Dec 2024 19:19:20 +0000 Subject: [PATCH] Bug 37222: (follow-up) Correct style of Vue sidebars NavigationItem.vue generates both breadcrumb menus and sidebar menus. Sidebar menus should not have the same markers between list elements. --- .../intranet-tmpl/prog/css/src/staff-global.scss | 11 +++++++++++ 1 file changed, 11 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 130cba0294..bbd351dfbf 100644 --- a/koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss +++ b/koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss @@ -417,6 +417,17 @@ aside { } } } + + .breadcrumb-item { + + .breadcrumb-item { + &::before { + background: transparent none; + display: none; + height: unset; + width: unset; + } + } + } } .sidebar_menu { -- 2.39.5