Tables-Filter plugin has filter input box BEHIND table list
Database management in a single PHP file
Brought to you by:
jakubvrana
This is because the HTML for that tables list itself is an absolute positioned unordered list - it needs to be switched to a relative list in order to allow e.g. the filter input box to be inserted between the menus and the tables list.
i.e. this is a bug with Adminer itself and not the tables-filter plugin.
I managed to fix this temporarily with two very minor CSS changes for #tables - remove
position: absolute(and removeleft,right,bottomandtopstyles) and change margin frommargin: 32px -15px !important;tomargin: 15px -15px !important;Last edit: Sophist 2023-11-23
If I am looking correctly,
#tablesdoes not have absolute positioning.