MrOtherGuy / firefox-csshacks

Collection of userstyles affecting the browser
Mozilla Public License 2.0
3.19k stars 312 forks source link

Bars autohide when hovering over drop-down menus originating within them #255

Closed J-Kappes closed 1 year ago

J-Kappes commented 1 year ago

When using the autohide main toolbar stylesheet, clicking on the hamburger menu and then hovering over the resulting drop-down menu, the toolbar will eventually hide and the drop-down menu will slide up which can cause you to missclick items.

Would it be possible (and preferable) to suppress the autohide while hovering over any drop-down menus originating in the bar in question?

MrOtherGuy commented 1 year ago

Yes, it would certainly be preferable, but sadly we can't do that. Well, we can but as a side-effect the toolbars would show when almost any panel or menupopup is hovered. Like, toolbars would show up when you hover over website context menu.

You can add this ruelset if you want to try how that goes:

#mainPopupSet:hover ~ box .browser-toolbar{
  transform: translateY(0);
  opacity: 1;
  transition-duration: 500ms, 200ms !important;
  transition-delay: 0s !important;
}
J-Kappes commented 1 year ago

Bummer. Thanks for the quick reply, though!