Vanwege onderhoudswerkzaamheden die uw ervaring zouden moeten verbeteren, heeft deze website beperkte functionaliteit. Als een artikel uw probleem niet verhelpt en u een vraag wilt stellen, kan onze ondersteuningsgemeenschap u helpen in @FirefoxSupport op Twitter en /r/firefox op Reddit.

Zoeken in Support

Vermijd ondersteuningsscams. We zullen u nooit vragen een telefoonnummer te bellen, er een sms naar te sturen of persoonlijke gegevens te delen. Meld verdachte activiteit met de optie ‘Misbruik melden’.

Meer info

Deze conversatie is gearchiveerd. Stel een nieuwe vraag als u hulp nodig hebt.

In compact mode, Proton (v89) doesn't show favicons on muted tabs

  • 2 antwoorden
  • 1 heeft dit probleem
  • 1 weergave
  • Laatste antwoord van cor-el

more options

With the new Proton UI, if you're in compact mode, then muted tabs don't show the favicon (the icon at the left hand side of the tab which represents the website). It's replaced by the mute icon, making it harder to distinguish different tabs visually. See the example in the screenshot.

Is it possible to bring the favicon back?

With the new Proton UI, if you're in compact mode, then muted tabs don't show the favicon (the icon at the left hand side of the tab which represents the website). It's replaced by the mute icon, making it harder to distinguish different tabs visually. See the example in the screenshot. Is it possible to bring the favicon back?
Gekoppelde schermafbeeldingen

Gekozen oplossing

I was able to get what I wanted using userChrome.css. Here's how you can bring the favicon back...

  .tab-content .tab-icon-image {
    opacity: 1.0 !important;
  }

Now, that looks a bit messy because the favicon has a smaller and not so distinct mute icon on top of it. My approach to this - warning, it won't suit everyone - was to hide the mute icon, and to use the bottom border of the tab to show when a tab is muted or not. My tabs are all muted by default, so I want the *unmuted* tabs to stand out, using a red line at the bottom of the tab. Many people would instead want the *muted* tabs to stand out, in which case you could just replace "tab:not([muted])" with "tab[muted]" in the second part of the code below:

  tab[muted] .tab-icon-overlay {
    display: none !important;
  }

  tab:not([muted]) .tab-background {
    border-bottom-width: 2px !important;
    border-bottom-style: solid !important;
    border-bottom-color: orangered !important;
  }

The screenshot shows an example. Here I've unmuted the middle tab, and left the other two muted.

Dit antwoord in context lezen 👍 0

Alle antwoorden (2)

more options

Gekozen oplossing

I was able to get what I wanted using userChrome.css. Here's how you can bring the favicon back...

  .tab-content .tab-icon-image {
    opacity: 1.0 !important;
  }

Now, that looks a bit messy because the favicon has a smaller and not so distinct mute icon on top of it. My approach to this - warning, it won't suit everyone - was to hide the mute icon, and to use the bottom border of the tab to show when a tab is muted or not. My tabs are all muted by default, so I want the *unmuted* tabs to stand out, using a red line at the bottom of the tab. Many people would instead want the *muted* tabs to stand out, in which case you could just replace "tab:not([muted])" with "tab[muted]" in the second part of the code below:

  tab[muted] .tab-icon-overlay {
    display: none !important;
  }

  tab:not([muted]) .tab-background {
    border-bottom-width: 2px !important;
    border-bottom-style: solid !important;
    border-bottom-color: orangered !important;
  }

The screenshot shows an example. Here I've unmuted the middle tab, and left the other two muted.

Bewerkt door pg_78 op

more options

Note that this is affected by the Density settings you can select on the Customize page. In Compact mode you only see the sound playing icon and not the website favicon. In Normal mode you see the favicon by default and the sound playing icon on hover, there is a secondary line that shows the 'playing' or 'muted' state since the icon is hidden by default.