From 7ec975ef60ba08327d0684c54a94a75e8a2ab761 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. Signed-off-by: Lucas Gass Signed-off-by: David Nind --- .../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 e4d2ed1da2c..110d8fcf06f 100644 --- a/koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss +++ b/koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss @@ -439,6 +439,17 @@ aside { } } } + + .breadcrumb-item { + + .breadcrumb-item { + &::before { + background: transparent none; + display: none; + height: unset; + width: unset; + } + } + } } .sidebar_menu { -- 2.39.5