Timvde / UserChrome-Tweaks

A community maintained repository of userChrome.css tweaks for Firefox
GNU General Public License v3.0
1.25k stars 121 forks source link

navbar/auto-hide.css not working properly in Firefox 58 #62

Closed dannycolin closed 6 years ago

dannycolin commented 6 years ago

Hi

I just updated to FF58 this morning and i found out that there's a extra gray bar when the navbar is hidden.

https://imgur.com/a/HLQgA

It seems that the variable --tab-toolbar-navbar-overlap is undefined by default. So I've changed the line 20.

Before : --tabbar-height: calc(var(--tab-min-height) + var(--space-above-tabbar) - var(--tab-toolbar-navbar-overlap));

After : --tabbar-height: calc(var(--tab-min-height) + var(--space-above-tabbar));

That workaround is causing a minor glitch. When I hover the tabbar the webpage seems to go up by 1px.

EDIT [2017-11-23] See https://github.com/Timvde/UserChrome-Tweaks/pull/67