From aefc573d9c630130b224ee051a6890a8d6a297ef Mon Sep 17 00:00:00 2001 From: Owen Leonard Date: Tue, 25 Oct 2022 16:09:46 +0000 Subject: [PATCH] Bug 31974: Regression: Bug 31813 incorrectly affected labels in the header search This patch adds a specific white-space property to header search labels so that they do not wrap. The change made by Bug 31813 overrode the white-space property incorrectly. To test, apply the patch and rebuild the staff interface CSS. - Go to Administration. - The header search label "Search system preferences" should appear on one line. - Check that labels still wrap correctly on pages like the patron edit screen and the staged MARC record detail view. Signed-off-by: David Nind Signed-off-by: Katrin Fischer --- koha-tmpl/intranet-tmpl/prog/css/src/_header.scss | 1 + 1 file changed, 1 insertion(+) diff --git a/koha-tmpl/intranet-tmpl/prog/css/src/_header.scss b/koha-tmpl/intranet-tmpl/prog/css/src/_header.scss index aaf8adb22c..b34f6a2eb5 100644 --- a/koha-tmpl/intranet-tmpl/prog/css/src/_header.scss +++ b/koha-tmpl/intranet-tmpl/prog/css/src/_header.scss @@ -118,6 +118,7 @@ a.navbar-toggle { color: white; font-weight: bold; margin: 0; + white-space: nowrap; } } -- 2.30.2