From de2279632935034947b563d45a8768449c338ad4 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. --- 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 b1db2c9db8..f596246f34 100644 --- a/koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss +++ b/koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss @@ -3486,8 +3486,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.11.0