MrOtherGuy / firefox-csshacks

Collection of userstyles affecting the browser
Mozilla Public License 2.0
3.13k stars 310 forks source link

Is there any css to differentiate loaded tabs from unloaded? #310

Closed scmanjarrez closed 10 months ago

scmanjarrez commented 10 months ago

I meant, to have a grayed out tabs that haven't been loaded yet (you click it, then it refresh and web content)

MrOtherGuy commented 10 months ago

For that you can simply use something like this:

.tabbrowser-tab[pending]{
  opacity: 0.4;
}
scmanjarrez commented 10 months ago

Thank you!