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
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.
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
}