I would like to make some Services invisible in dashboard

Started by NorbertK, September 02, 2024, 10:50:52 AM

Previous topic - Next topic
Hello all,
I would like to make some some services (which I do not use at the moment) invisible in the browser (I use librewolf/firefox) .
I presume some kind of CSS or browse hack is in order ....

Does anyone have a tip for me ?

Thanks a lot

Norbert
Kind regards and thanks !

Norbert

In the old GUI the Services widget did had a possibility to hide and show you wanted if I remember correctly.

Maybe with time it will be implemented to the new widget as well.

Regards,
S.
Networking is love. You may hate it, but in the end, you always come back to it.

OPNSense HW
APU2D2 - deceased
N5105 - i226-V | Patriot 2x8G 3200 DDR4 | L 790 512G - VM HA(SOON)
N100   - i226-V | Crucial 16G  4800 DDR5 | S 980 500G - PROD

Apparently each service has its own CSS ID.
example: <div class="flextable-row" id="services_ntpd" ...
You can find the ID in Firefox DevTools.

It seems possible to hide the display by adding CSS to the corresponding ID using an extension such as Stylus.
example: #services_ntpd { display: none; }

Late, but ...

This works as user css
#Services > a[href="#Services_DHCRelay"]{
    display: none !important
}
#Services > a[href="#Services_CaptivePortal"]{
    display: none !important
}

Kind regards and thanks !

Norbert