Maybe we can get rid of the scrolling subframe? Or at least scale the frame to the full height that is available?
On my screen the firewall rules window uses about half of the available height, but I can scroll way down.
Best would be to open a ticket on GH for this, so devs can review.
Regards,
S.
I have fixed this for me with a Tampermonkey script.
Until it is fixed, you can use this.
(function()
{
'use strict';
GM_addStyle(`
.tabulator .tabulator-tableholder
{
max-height: 2000px !important;
height: auto !important;
overflow-y: auto !important;
}
.tabulator
{
max-height: 2000px !important;
height: auto !important;
}
.bootgrid-table-container,
.bootgrid-body
{
max-height: 2000px !important;
height: auto !important;
overflow-y: auto !important;
}
.tab-content.content-box
{
max-height: none !important;
overflow: visible !important;
}
`);
})();
Mind sharing a screenshot of what this^ looks like?