From 66eb1ec73e9cb431e784d4f90b5ba986818f7397 Mon Sep 17 00:00:00 2001 From: Lucas Gass Date: Mon, 4 Nov 2024 21:41:49 +0000 Subject: [PATCH] Bug 38319: Control width of dt-select-filter To test: 1. Find a record with some items. 2. Notice the width of the entire table. 3. Click 'Show filters' 4. The columns with a dt-select-filter ( Item type, Current library, Home library) are now much wider than without the filters. 5. APPLY PATCH, yarn build 6. Try again, the column width should stay the same. --- koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss | 5 +++++ 1 file changed, 5 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 40deeaf44d4..650557c5dc9 100644 --- a/koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss +++ b/koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss @@ -4707,6 +4707,11 @@ div .suggestion_note { } } +/* DataTable filter width */ +.dt-select-filter { + width: 100%; +} + @import "header"; @import "toolbar"; @import "forms"; -- 2.39.2