We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eb559e5 commit faa1f1cCopy full SHA for faa1f1c
src/bundles/remoteTutorDrawer.tsx
@@ -48,9 +48,11 @@ const init = (opts: RemoteTutorDrawerProps) => {
48
)
49
50
// Ensure mathjax context menu is rendered above the drawer
51
+ // NOTE: must be done in regular DOM, not hte shadowdom.
52
+ // Mathjax context menu is appended to end of body.
53
const style = document.createElement("style")
54
style.textContent = `
- .CtxtMenu_Menu {
55
+ .CtxtMenu_MenuFrame {
56
z-index: ${theme.zIndex.drawer + 100} !important;
57
}
58
`
0 commit comments