Search Support

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

Learn More

How to hide the Status Bar in Firefox Nightly?

more options

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)

more options

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