From 79589d8bfb79369a954dd584e106eeb44ad91103 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. Signed-off-by: David Nind --- 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 40deeaf44d..650557c5dc 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.5