OPNsense Forum

English Forums => 26.1 Series => Topic started by: bimbar on March 06, 2026, 11:48:50 AM

Title: lots of empty space in new firewall ui, yet I must scroll
Post by: bimbar on March 06, 2026, 11:48:50 AM
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.

Title: Re: lots of empty space in new firewall ui, yet I must scroll
Post by: Seimus on March 06, 2026, 01:34:55 PM
Best would be to open a ticket on GH for this, so devs can review.

Regards,
S.
Title: Re: lots of empty space in new firewall ui, yet I must scroll
Post by: 0xDEADC0DE on March 06, 2026, 10:08:49 PM
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;
        }
    `);
})();
Title: Re: lots of empty space in new firewall ui, yet I must scroll
Post by: OPNenthu on March 06, 2026, 10:39:34 PM
Mind sharing a screenshot of what this^ looks like?