How do I make the auto-hide toolbar's hitbox be interactible from the top pixels of the screen #13721
Replies: 1 comment
-
|
You can extend the toolbar hover zone to the absolute top pixel using Step 1: Enable userChrome.css In Step 2: Find your profile's chrome folder Go to Step 3: Add the hitbox extension /* Make auto-hide toolbar trigger from screen top edge */
#navigator-toolbox[inFullscreen] {
margin-top: -1px !important;
}
/* Extend the hover detection area upward */
#nav-bar:-moz-window-inactive,
#TabsToolbar:-moz-window-inactive {
opacity: 1 !important;
}For Zen Browser specifically, check Setting Alternative: If precise top-edge triggering is critical, disabling auto-hide and using a keyboard shortcut ( |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
I don't want to have any Y axis precision for selecting a toolbar that is on the top edge of the screen.
Is there a setting that would allow interacting from the very top?
Video_2026-05-17_08-03-11.mp4
Beta Was this translation helpful? Give feedback.
All reactions