Problem with SearchBuilder if nested in Card component (Bootstrap 4) at bottom of the page
Problem with SearchBuilder if nested in Card component (Bootstrap 4) at bottom of the page

Link to test case: https://live.datatables.net/dijekeve/1/edit
Debugger code (debug.datatables.net): NA
Error messages shown: NA
Description of problem: Hello,
As you can see on the test case, if SearchBuilder is at the bottom of the page and nested in Card component (Bootstrap 4), the pane is displayed incorrectly.
If you comment or delete the Card component and click on the Search Builder button, you can see that it is correctly displayed to the top.
Is there a way to avoid this behavior?
Otherwise, I hope you will be able to correct it in the next release.
Thanks in advance and have a nice day.
Answers
You can inspect the dropdown menu
div
to see what styling is applied. You will find this CSS:One option is to modify the CSS to move the element up. Something like this:
Need to add
!important
to override the defaulttop
value.https://live.datatables.net/dijekeve/2/edit
Kevin