From cec3eb7513a6e52aebe9a8808def316867c0ebd0 Mon Sep 17 00:00:00 2001 From: Owen Leonard Date: Wed, 3 Mar 2021 17:53:47 +0000 Subject: [PATCH] Bug 26959: (follow-up) Fix CSS for column selection labels This patch modifies the staff interface SCSS in order to fix the display of column selection checkbox labels on the batch item modification page. Even though the style of the elements defines the "white-space" as "nowrap," adding whitespace within the element (as was done to correct indentation) still created problems. Changing the display property of the elements to "inline-block" corrects this. Signed-off-by: Jonathan Druart Signed-off-by: Jonathan Druart --- koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss | 2 +- 1 file changed, 1 insertion(+), 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 af5497a319..ed2a495237 100644 --- a/koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss +++ b/koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss @@ -3489,8 +3489,8 @@ progress { span { background-color: #EBF3FF; border-radius: 5px; + display: inline-block; font-size: 75%; - line-height: 240%; margin: 3px; padding: 3px; white-space: nowrap; -- 2.39.5