From 8f84059443b9ed2359c840589bb7a3bfe4f5888a Mon Sep 17 00:00:00 2001 From: Martin Renvoize Date: Thu, 13 Aug 2020 09:30:20 +0100 Subject: [PATCH] Bug 21689: Unset label width restriction The label width restriction within fieldsets causes issues for the datatables header. Unsetting it explicitly here resolves the line wrapping issues :) https://bugs.koha-community.org/show_bug.cgi?id=26189 --- koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss | 1 + 1 file changed, 1 insertion(+) 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 bfdf40f100..64f79cd349 100644 --- a/koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss +++ b/koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss @@ -929,6 +929,7 @@ fieldset { .dataTables_wrapper { label { font-weight: 400; + width: unset; } } } -- 2.20.1