wilfredwee / photon-australis

Bringing sexy curves back to Firefox Photon.
MIT License
461 stars 69 forks source link

Lower tab curve is missing in Firefox 102. #124

Open CO-Windler opened 2 years ago

CO-Windler commented 2 years ago

I use a custom userChrome.css to render curvy tabs. Since I updated Firefox to 102 on Win10 the lower curves of each tab (except the leftmost corner) are not drawn properly anymore but stay straight.

@import url(userChrome-light_photon-australis.css); / curved tabs /

So I won't dare to update my Linux Mint version of Firefox 101 yet. (FF102 on Win10 also introduced a cookies setting bug that risks privacy.)

queueslikely commented 2 years ago

Same here on Firefox 102.0 and Windows 10 21H2

Before: Screenshot_18

After: Screenshot_17

Orriky commented 2 years ago

Try this:


.tab-background {
  outline: none !important;
}

.tabbrowser-tab[selected="true"] {
  padding-left: 12px !important;
  padding-right: 12px !important;
}
CO-Windler commented 2 years ago

This is only half of a solution. I tried this on my laptop (IBM X61t with Win10), but it makes the active tab shorter (less text visible) and any shadowed tab (unclicked mouse over) still has the wrong shape.

2BeeOrNot commented 2 years ago

Maybe this:

.tabbrowser-tab { overflow: unset !important; }

queueslikely commented 2 years ago

Can confirm this works