为提升您的使用体验,本站正在维护,部分功能暂时无法使用。如果本站文章无法解决您的问题,您想要向社区提问的话,请到 Twitter 上的 @FirefoxSupport 或 Reddit 上的 /r/firefox 提问,我们的支持社区将会很快回复您的疑问。

搜索 | 用户支持

防范以用户支持为名的诈骗。我们绝对不会要求您拨打电话或发送短信,及提供任何个人信息。请使用“举报滥用”选项报告涉及违规的行为。

详细了解

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

  • 2 个回答
  • 1 人有此问题
  • 1 次查看
  • 最后回复者为 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?
已附加屏幕截图

被采纳的解决方案

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.

定位到答案原位置 👍 0

所有回复 (2)

more options

选择的解决方案

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.

由pg_78于修改

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.