From e2f0cfb89c8f3fccd45e2f92cda6d4fe968ab08b Mon Sep 17 00:00:00 2001 From: Martin Renvoize Date: Mon, 27 Jun 2022 15:00:50 +0100 Subject: [PATCH] Bug 28854: (follow-up) Restore block styling on bundled span This patch restores a css rule that we lost during rebases that makes the 'bundled' span that appears for bundled items on their respective details pages so that the 'In bundle: ' text in the status field of the table appears beneath the 'Not for loan (Added to bundle)' text. Signed-off-by: Katrin Fischer Signed-off-by: Kyle M Hall --- koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss | 6 ++++++ 1 file changed, 6 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 7578cdbf6ae..cb6d2c52a6a 100644 --- a/koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss +++ b/koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss @@ -1973,6 +1973,12 @@ i { font-style: italic; } +// style for bundled detail in catalogsearch +.bundled { + display: block; + font-style: italic; +} + #menu { border-right: 1px solid #B9D8D9; margin-right: .5em; -- 2.30.2