Anonymous wrote:
First off, I'd just like to say great job with the extension, it's my fave. However, there's a small issue with RC2 that wasn't in the previous dev. version.
I use a userstyle script that enables me to change the colors of my active and unactive tabs. Upon install RC2 I noticed that when I opened a new tab, it would "bleed" two horizontal bars of the same color into the old tab. I opened a bunch of blank tabs to test it out it's the active tab as well as the inactive tab to it's right that are affected by this. If you could fix this that would be great.
Here's the tab color script, maybe someone will notice something wrong with it. Thanks!
.tabbrowser-tab[selected="true"] {
color: black !important;
}
.tabbrowser-tab:not([selected="true"]) {
color: black !important;
}
.tabbrowser-tab[selected="true"] > .tab-image-left,
.tabbrowser-tab[selected="true"] > .tab-image-middle,
.tabbrowser-tab[selected="true"] > .tab-image-right,
.tabbrowser-tab[selected="true"] > .tab-close-button {
background-color: #FFFFFF !important;
}
.tabbrowser-tab:not([selected="true"]) > .tab-image-left,
.tabbrowser-tab:not([selected="true"]) > .tab-image-middle,
.tabbrowser-tab:not([selected="true"]) > .tab-image-right,
.tabbrowser-tab:not([selected="true"]) > .tab-close-button {
background-color: #CCCCCC !important;
}
}
Code:
.tabbrowser-tab[selected="true"] {
color: black !important;
}
.tabbrowser-tab:not([selected="true"]) {
color: black !important;
}
.tabbrowser-tab[selected="true"] > .tab-image-left,
.tabbrowser-tab[selected="true"] > .tab-image-middle,
.tabbrowser-tab[selected="true"] > .tab-image-right,
.tabbrowser-tab[selected="true"] .tab-close-button {
background-color: #FFFFFF !important;
}
.tabbrowser-tab:not([selected="true"]) > .tab-image-left,
.tabbrowser-tab:not([selected="true"]) > .tab-image-middle,
.tabbrowser-tab:not([selected="true"]) > .tab-image-right,
.tabbrowser-tab:not([selected="true"]) .tab-close-button {
background-color: #CCCCCC !important;
}
just drop the
> befor .tab-close-button