Tabs query

Discussion of features in Mozilla Firefox
Post Reply
User avatar
shoestring
Posts: 156
Joined: November 5th, 2002, 3:40 pm
Location: Geekhaven, MA, USA

Tabs query

Post by shoestring »

I put the following (from mozilla.org) into userChrome.css:

.tabbrowser-tabs *|tab:not([image]) .tab-icon {
display: none;
}

which nicely kills the icons on tabs, but it also kills the spinner, which I'd like back. Anyone know how to do this? I like that indication that the tab is loading.
User avatar
grayrest
Posts: 468
Joined: November 5th, 2002, 8:49 am
Location: Tribus!
Contact:

Post by grayrest »

Code: Select all

tab[busy] > .tab-icon {
display: inherit !important;
}


Not sure about the display value. It should work but I'm not sure. If that doesn't work, try "inline" and "block" in the place of "inherit". I think this has a high enough specicivity to override the rule posted above.
User avatar
shoestring
Posts: 156
Joined: November 5th, 2002, 3:40 pm
Location: Geekhaven, MA, USA

Post by shoestring »

grayrest wrote:

Code: Select all

tab[busy] > .tab-icon {
display: inherit !important;
}


Not sure about the display value. It should work but I'm not sure. If that doesn't work, try "inline" and "block" in the place of "inherit". I think this has a high enough specicivity to override the rule posted above.


That seems to have worked nicely! Thank you :!:
Post Reply