MrOtherGuy / firefox-csshacks

Collection of userstyles affecting the browser
Mozilla Public License 2.0
3.13k stars 309 forks source link

autohide_bookmarks stays hidden when trying to add a bookmark by dragging & dropping a link. #328

Closed Elaws closed 8 months ago

Elaws commented 8 months ago

When we want to add a bookmark by dragging and dropping a link, it's impossible because the bookmarks menu stays hidden.

MrOtherGuy commented 8 months ago

Unfortunately that is impossible to fix. It doesn't really have anything to do with bookmarks toolbar, it's just that :hover states are sort of "frozen" when a drag session is active - and that cannot be changed with CSS. The same issue would manifest with a simple style like this:

#nav-bar:hover{
  background: #f00 !important;
}

The nav-bar doesn't become hovered when you are dragging anything over it.

Elaws commented 8 months ago

Thanks for your explanation.