How to hide the Status Bar in Firefox Nightly?
Since the upgrade to Nightly my userChrome.css stopped working.
The code in https://support.mozilla.org/en-US/questions/1186444 no longer works.
Since the upgrade to Nightly my userChrome.css stopped working.
The code in https://support.mozilla.org/en-US/questions/1186444 no longer works.
Chosen solution
For Firefox Nightly 61.0a1 it should be like the following instead:
#statuspanel #statuspanel-label[value^="Read"],
#statuspanel #statuspanel-label[value^="Look"],
#statuspanel #statuspanel-label[value^="Connect"],
#statuspanel #statuspanel-label[value^="Wait"],
#statuspanel #statuspanel-label[value^="Send"],
#statuspanel #statuspanel-label[value^="Transfer"],
#statuspanel #statuspanel-label[value*="TLS handshake"],
#statuspanel #statuspanel-label[value*="FTP transaction"] {
display: none !important;
}
Read this answer in context
👍 0
All Replies (1)
Chosen Solution
For Firefox Nightly 61.0a1 it should be like the following instead:
#statuspanel #statuspanel-label[value^="Read"],
#statuspanel #statuspanel-label[value^="Look"],
#statuspanel #statuspanel-label[value^="Connect"],
#statuspanel #statuspanel-label[value^="Wait"],
#statuspanel #statuspanel-label[value^="Send"],
#statuspanel #statuspanel-label[value^="Transfer"],
#statuspanel #statuspanel-label[value*="TLS handshake"],
#statuspanel #statuspanel-label[value*="FTP transaction"] {
display: none !important;
}