Join the AMA (Ask Me Anything) with the Firefox leadership team to celebrate Firefox 20th anniversary and discuss Firefox’s future on Mozilla Connect. Mark your calendar on Thursday, November 14, 18:00 - 20:00 UTC!

Prohledat stránky podpory

Vyhněte se podvodům. Za účelem poskytnutí podpory vás nikdy nežádáme, abyste zavolali nebo poslali SMS na nějaké telefonní číslo nebo abyste sdělili své osobní údaje. Jakékoliv podezřelé chování nám prosím nahlaste pomocí odkazu „Nahlásit zneužití“.

Zjistit více

Reverting sliding dots to spinner breaks other css

more options

I am using 60.4esr. I have applied css to get back the curved tabs and get rid of the ... in the address bar. I can post the userchrome.css file if needed (it's fairly long)

I am now trying to get rid of the sliding dots when the page load and revert to the spinning circle, which I find much more useful. However, when I apply the code, it breaks everything else I have applied.

I've tried with and without the @namespace line.

This is the code...

.tab-throbber[busy]::before {

background-image: url("chrome://global/skin/icons/loading.png") !important;
animation: unset !important;

}

.tab-throbber[busy]:not([progress])::before {

/* Grays the blue during "Connecting" state */
filter: grayscale(100%);

}

@media (min-resolution: 2dppx) {

.tab-throbber[busy]::before {
  background-image: url("chrome://global/skin/icons/loading@2x.png") !important;

}

Original post: https://support.mozilla.org/en-US/questions/1197903

Appreciate you assistance. Thank you.

I am using 60.4esr. I have applied css to get back the curved tabs and get rid of the ... in the address bar. I can post the userchrome.css file if needed (it's fairly long) I am now trying to get rid of the sliding dots when the page load and revert to the spinning circle, which I find much more useful. However, when I apply the code, it breaks everything else I have applied. I've tried with and without the @namespace line. This is the code... .tab-throbber[busy]::before { background-image: url("chrome://global/skin/icons/loading.png") !important; animation: unset !important; } .tab-throbber[busy]:not([progress])::before { /* Grays the blue during "Connecting" state */ filter: grayscale(100%); } @media (min-resolution: 2dppx) { .tab-throbber[busy]::before { background-image: url("chrome://global/skin/icons/loading@2x.png") !important; } Original post: https://support.mozilla.org/en-US/questions/1197903 Appreciate you assistance. Thank you.

Všechny odpovědi (1)

more options

There should be another closing } on this rule (always count the open and close {} and make sure they balance):

@media (min-resolution: 2dppx) {
 .tab-throbber[busy]::before {
   background-image: url("chrome://global/skin/icons/loading@2x.png") !important;
}