Luís Miguel
Luís Miguel
Use [Tab Mix Plus](https://addons.mozilla.org/firefox/addon/tab-mix-plus/) to style unloaded tabs and they will also be styled that way in groups view. They're not being styled in the quick access panel though, I...
Then it's definitely better you do the same for tabs in groups view with Stylish, because it's not possible for the add-on to know what kind of style you want...
Something like this should work: ``` CSS @-moz-document url("chrome://tabgroups/content/tabview.xhtml") { .tab[pending] { opacity: 0.7; } .tab[pending] .tab-label { color: red; } } ```
> I just realize I don't really know what you mean by this. I meant that it can't really read our custom CSS sheet that you used to style your...
Try something like: ``` CSS @-moz-document url("chrome://tabgroups/content/tabview.xhtml") { :root { --item-background: whatever-you-want; } } ```
> Why do you need to read anything to just applay transparency, like with the code you shared? Just set .tab[pending] { opacity: 0.4; } and don't bother with anything...
List view still has this problem, it doesn't really have any way to be styled like this through CSS either. ;)
I'm assuming by tab mode you mean single view. > you now have to close the group (and in tabbed mode there's no close button for it). There is. At...
Further right. Doesn't the close button appear for you there?  > The benefit is that I don't have to close the group if I accidentally click the "new tab...
@iShyboy one of us is missing the point of this issue... What you're suggesting is not closing a group when closing the last tab, which I agree with. That's not...