Questo sito potrebbe offrire funzionalità limitate durante le operazioni di manutenzione per migliorare l'esperienza utente. Se un articolo non risolve il tuo problema e vuoi richiedere supporto, la nostra comunità di supporto è pronta ad aiutarti tramite @FirefoxSupport su Twitter e /r/firefox su Reddit.

Cerca nel supporto

Attenzione alle mail truffa. Mozilla non chiederà mai di chiamare o mandare messaggi a un numero di telefono o di inviare dati personali. Segnalare qualsiasi attività sospetta utilizzando l'opzione “Segnala abuso”.

Ulteriori informazioni

Questa discussione è archiviata. Inserire una nuova richiesta se occorre aiuto.

How can I hide "Read/Waiting/Transferring data..." status?

  • 4 risposte
  • 3 hanno questo problema
  • 4 visualizzazioni
  • Ultima risposta di Brianp152

more options

Firefox 34.0.5 on Windows 7 I want to hide the "Read/Waiting/Transferring data..." status that shows on the lower left of the browser screen I found a solution in this archived thread, https://support.mozilla.org/en-US/questions/942499, and I applied it, but it doesn't seem to work

Firefox 34.0.5 on Windows 7 I want to hide the "Read/Waiting/Transferring data..." status that shows on the lower left of the browser screen I found a solution in this archived thread, https://support.mozilla.org/en-US/questions/942499, and I applied it, but it doesn't seem to work

Soluzione scelta

thank you very much cor-el

I used the code you posted at 969955 page [ https://support.mozilla.org/en-US/questions/969955 ]

quite strangely I must disable/enable Adblock Plus after, but it works

@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* only needed once */

.statuspanel-label {background:#FF9!important;color:black!important;font-family:"DejaVu Sans Mono"}

statuspanel {display:none!important} statuspanel {max-width:90%!important}

statuspanel[type="overLink"] .statuspanel-label statuspanel[type="status"] .statuspanel-label[value^="Looking"] statuspanel[type="status"] .statuspanel-label[value^="Connect"] statuspanel[type="status"] .statuspanel-label[value^="Waiting"] statuspanel[type="status"] .statuspanel-label[value^="Transfer"]

Leggere questa risposta nel contesto 👍 0

Tutte le risposte (4)

more options

That should work, but there was another thread that recommended this add on: https://addons.mozilla.org/ru/firefox.../status-4-evar/

more options

That should be statuspanel (tag name) instead of #statusbar-display for the selector

@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* only needed once */

statuspanel[label^="Looking"] {display:none !important;}
statuspanel[label^="Connect"] {display:none !important;}
statuspanel[label^="Waiting"] {display:none !important;}
statuspanel[label^="Transfer"] {display:none !important;}

You can possibly use these selectors to be more precise:

statuspanel[type="overLink"] .statuspanel-label
statuspanel[type="status"] .statuspanel-label[value^="Looking"]
statuspanel[type="status"] .statuspanel-label[value^="Connect"]
statuspanel[type="status"] .statuspanel-label[value^="Waiting"]
statuspanel[type="status"] .statuspanel-label[value^="Transfer"]

Modificato da cor-el il

more options

Soluzione scelta

thank you very much cor-el

I used the code you posted at 969955 page [ https://support.mozilla.org/en-US/questions/969955 ]

quite strangely I must disable/enable Adblock Plus after, but it works

@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* only needed once */

.statuspanel-label {background:#FF9!important;color:black!important;font-family:"DejaVu Sans Mono"}

statuspanel {display:none!important} statuspanel {max-width:90%!important}

statuspanel[type="overLink"] .statuspanel-label statuspanel[type="status"] .statuspanel-label[value^="Looking"] statuspanel[type="status"] .statuspanel-label[value^="Connect"] statuspanel[type="status"] .statuspanel-label[value^="Waiting"] statuspanel[type="status"] .statuspanel-label[value^="Transfer"]

more options

Thanks guys Will try these over the weekend.