-
-
Notifications
You must be signed in to change notification settings - Fork 131
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
MenuBar example is currently broken #596
Comments
Thank you for opening your first issue in this project! Engagement like this is essential for open source projects! 🤗 |
Thanks @thomasjm Would you like to work on a fix or do you have ideas how to fix it? |
I fixed it in my own Lumino project with a CSS change. This is necessary because of the change from absolute positioning to a CSS transform in #432. The CSS was essentially this: .lm-Menu {
left: 0px;
top: 0px;
} I'm guessing nobody noticed this problem before because JupyterLab etc. already have similar CSS. I think such CSS should be included directly in the Lumino CSS files so such fixes aren't needed on the user side. |
Thanks @thomasjm Make sense it is similar to #595 Would you mind opening a PR to fix this?
cc @krassowski - your input will be really appreciate on this one. |
I think the reason #432 stopped doing that was for DOM performance. |
Description
Reproduce
cd lumino
npm install && npm run build
cd examples/example-menubar
npm install && npm run build
google-chrome index.html
(or browser of your choice)Expected behavior
Menu should open and look normal.
Context
I suspect this is related to #432.
The text was updated successfully, but these errors were encountered: