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!

Цей вебсайт матиме обмежену функціональність, доки ми проводимо його обслуговування для поліпшення роботи. Якщо прочитана стаття не розв'язала вашу проблему і ви хочете поставити питання, наша спільнота підтримки з радістю допоможе вам на @FirefoxSupport у Twitter та /r/firefox на Reddit.

Шукати в статтях підтримки

Остерігайтеся нападів зловмисників. Mozilla ніколи не просить вас зателефонувати, надіслати номер телефону у повідомленні або поділитися з кимось особистими даними. Будь ласка, повідомте про підозрілі дії за допомогою меню “Повідомити про зловживання”

Докладніше

Ця тема перенесена в архів. Якщо вам потрібна допомога, запитайте.

How can I make the unloaded tabs look different from the loaded ones?

  • 2 відповіді
  • 1 має цю проблему
  • 1 перегляд
  • Остання відповідь від TheCannibalPony

more options

I used Tab Mix Plus in the pre-57 days so that the unloaded tabs were in italic with a different color, but Tab Mix Plus doesn't work with Quantum.

How can I get this function back? I looked, but I haven't found an add-on that did what I wanted.

Have a nice day!

I used Tab Mix Plus in the pre-57 days so that the unloaded tabs were in italic with a different color, but Tab Mix Plus doesn't work with Quantum. How can I get this function back? I looked, but I haven't found an add-on that did what I wanted. Have a nice day!

Усі відповіді (2)

more options

I don't think an add-on can access all of the properties of the tabs. Otherwise, it could be added as a feature of the ColorfulTabs extension or similar add-ons.

However, I do think a custom style rule could do it. Many aspects of Firefox's interface can be modified by creating a userChrome.css file with custom style rules.

I have a website about userChrome.css here: https://www.userchrome.org/ -- take your time if you're new to this so you do it right the first time

The unloaded tabs -- tabs restored from a previous session that have not yet been activated in the current session -- have a special attribute set:

pending="true"

You can attach a style rule to a tab with that attribute using this selector:

.tabbrowser-tab[pending="true"]

But what should the rule be -- what appearance are you looking for?

A great forum to getting detailed assistance with custom style rules is: https://www.reddit.com/r/FirefoxCSS/. Over there, someone posted a rule for "dimming" the unloaded tabs by making them 50% transparent:

https://www.reddit.com/r/FirefoxCSS/comments/6yvxh2/request_for_tab_manipulation_multirow_tab_bar_tab/dmqqayb/

Not sure if that's what you want or something else.