-
Notifications
You must be signed in to change notification settings - Fork 327
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Snippet dropdowns cut off behind the divider bar #3840
Comments
What is the desired result here, snippet over buttons or buttons over snippet? |
Not the snippet bar. The dropdowns. |
I know, but the overflow hidden is set in the pane element, it needs to be overriden, which makes that overflow happen. |
Let’s leave this alone for a few months and see if FF finishes implementing the CSS Anchor Positioning API. That will be the easiest, most comprehensive, and most accessible solution. Chrome already has it. My view modes PR uses it and it’s really really simple. |
taking my message from gitter and putting it here: <div class="snippetGroup snippetBarButton">
<div class="text">
<i class="fas fa-book"></i><span class="groupName">PHB</span>
</div>
<div class="dropdown">
...
</div>
</div>
Possibly do the same with the second to last menu as well. |
I would not call that simple. Absolute positioning is simple, it needs a maximum of 3 lines of code. |
Description
This is not a new issue, but testing #3635 made it more obvious since it uses a very narrow editor panel.
Snippet dropdowns are being cut off behind the divider bar. Note how the dropdown appears over the "jump" buttons, so I think the z-index is high enough, but instead some kind of overflow/clipping behavior.
The text was updated successfully, but these errors were encountered: