You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Taken from https://github.com/MrOtherGuy/firefox-csshacks/blob/master/chrome/autohide_toolbox.css
Starting with Firefox 133, our little chrome file no longer works.
- When a popup shows up (like the one to enable persistent storage when
pointing to Matrix Element), it blinks and isn't clickable.
- When Alt is pressed and the user interacts with the menubar, it disappears
and isn't usable..
The solution from MrOtherGuy is overkill, it does way too much and it's
a lot of code that can go wrong.. but at least it works.
Instead of relying on Alt being pressed, it relies on hover and animations.
Fixes#320Fixeslinuxmint/mint22.1-beta#85
/* Source file https://github.com/MrOtherGuy/firefox-csshacks/tree/master/chrome/autohide_toolbox.css made available under Mozilla Public License v. 2.0
2
+
See the above repository for updates as well as full license text. */
3
+
4
+
/* Hide the whole toolbar area unless urlbar is focused or cursor is over the toolbar
5
+
* Dimensions on non-Win10 OS probably needs to be adjusted.
6
+
*/
7
+
8
+
:root{
9
+
--uc-autohide-toolbox-delay:200ms; /* Wait 0.1s before hiding toolbars */
10
+
--uc-toolbox-rotation:82deg; /* This may need to be lower on mac - like 75 or so */
0 commit comments