https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36640
--- Comment #7 from Jonathan Druart <[email protected]> --- Style of the selects in the column filter has been reverted inadvertently on the item search. Trying to summarize the findings here: The selector is `#itemsearchform select, input[type="text"] {`, which is wrong. It is supposed to apply to the item search *form* only, but we apply to all the inputs. There is another class we have lost: .form-control This is what was used by the selects. Now we are using the filters added from datatables.js and the class no longer exist. There is a class already on the selects: "dt-select-filter", we should use this one, and add one to the inputs: "dt-input-filter". And add a style for them, that will be applied to ALL columns filters of all our tables using them. -- You are receiving this mail because: You are watching all bug changes. _______________________________________________ Koha-bugs mailing list [email protected] https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs website : http://www.koha-community.org/ git : http://git.koha-community.org/ bugs : http://bugs.koha-community.org/
