eoger / tabcenter-redux

Vertical Tabs extension for Firefox
Mozilla Public License 2.0
381 stars 67 forks source link

Tabs color broken in 0.6.3 #343

Closed jrw closed 6 years ago

jrw commented 6 years ago

I had previously used this custom css, based on suggestions from eoger (with Dark Theme): body.dark-theme { --tab-background-normal: 222, 20%, 40%; --tab-background-active: 221, 50%, 50%; --close-button-color: rgba(238, 238, 241, .25); --close-button-hover: rgba(238, 238, 241, .55); }

But updating to 0.6.3, this breaks that css for some reason and my tabs now look like: tcr

If I disable my custom css, it looks like: tcr2

Not sure how to change my custom css to match the latest 0.6.3 changes.

Smile4ever commented 6 years ago

Did you try this?

body.dark-theme {
--tab-background-normal: hsl(222, 20%, 40%);
--tab-background-active: hsl(221, 50%, 50%);
--close-button-color: hsl(rgba(238, 238, 241, .25));
--close-button-hover: hsl(rgba(238, 238, 241, .55));
}
jrw commented 6 years ago

No, but I did just now and it works; thanks!

jrw commented 6 years ago

Also worked on Linux, but not initially for some reason (but after a few restarts?).