Vyhľadajte odpoveď

Vyhnite sa podvodom s podporou. Nikdy vás nebudeme žiadať, aby ste zavolali alebo poslali SMS na telefónne číslo alebo zdieľali osobné informácie. Nahláste prosím podozrivú aktivitu použitím voľby “Nahlásiť zneužitie”.

Learn More

Color line on tabs now missing with FF91

  • 5 odpovedí
  • 1 má tento problém
  • 48 zobrazení
  • Posledná odpoveď od mobilesuit

more options

I am now unable to apply the container color line on top or at the bottom of the tabs using the userChrome.css file. Any help?

I am now unable to apply the container color line on top or at the bottom of the tabs using the userChrome.css file. Any help?

Vybrané riešenie

cor-el said

In Firefox 91+ you can no longer disable Proton via "browser.proton.enabled = false" on the about:config page. Best is to leave browser.proton.enabled at its default true value as the false setting can cause issues. This code still works for me.
.tabbrowser-tab[usercontextid] > .tab-stack > .tab-background > .tab-context-line {
	background-color: var(--identity-icon-color) !important;
	margin: 0 0 !important;
}

Whoa! It worked, though I had to first remove the script displaying color line at the bottom of the icon.

Thanks!

Čítať túto odpoveď v kontexte 👍 0

Všetky odpovede (5)

more options

Only found a script for color line at icon's bottom.

more options

I have seen posts about container colour lines on Reddit, on the firefox or FirefoxCSS sub or both.

more options

TerryN21 said

I have seen posts about container colour lines on Reddit, on the firefox or FirefoxCSS sub or both.

Been using the popular one/s before FF91. Now rendered ineffective.

more options

In Firefox 91+ you can no longer disable Proton via "browser.proton.enabled = false" on the about:config page. Best is to leave browser.proton.enabled at its default true value as the false setting can cause issues.

This code still works for me.

.tabbrowser-tab[usercontextid] > .tab-stack > .tab-background > .tab-context-line {
	background-color: var(--identity-icon-color) !important;
	margin: 0 0 !important;
}

more options

Vybrané riešenie

cor-el said

In Firefox 91+ you can no longer disable Proton via "browser.proton.enabled = false" on the about:config page. Best is to leave browser.proton.enabled at its default true value as the false setting can cause issues. This code still works for me.
.tabbrowser-tab[usercontextid] > .tab-stack > .tab-background > .tab-context-line {
	background-color: var(--identity-icon-color) !important;
	margin: 0 0 !important;
}

Whoa! It worked, though I had to first remove the script displaying color line at the bottom of the icon.

Thanks!