bulma icon indicating copy to clipboard operation
bulma copied to clipboard

Fix issue of nested dropdowns. Fixes #2963

Open sebastian-bartkowiak opened this issue 5 years ago • 1 comments

This is a bugfix. Fixes #2963

Proposed solution

As suggested in issue - forcing a direct child selector on .dropdown-menu element fixes mentioned issue.

Tradeoffs

None.

Testing Done

Build is working and raised issue is resolved.

Changelog updated?

No.

sebastian-bartkowiak avatar May 21 '20 09:05 sebastian-bartkowiak

Just stumbled on this as well and this fixes the issue. Any chance we can get this merged @jgthms? 🙏

In the meantime, I've manually fixed this by overwriting the styles:

    .dropdown.is-hoverable:hover .dropdown-menu {
        display: none;
    }
    .dropdown.is-hoverable:hover > .dropdown-menu {
        display: block;
    }

msigwart avatar Apr 24 '24 14:04 msigwart