diff --git a/.changeset/itchy-queens-confess.md b/.changeset/itchy-queens-confess.md new file mode 100644 index 0000000..16143ad --- /dev/null +++ b/.changeset/itchy-queens-confess.md @@ -0,0 +1,5 @@ +--- +"wpgraphql-ide": patch +--- + +fix: update z-index of the CodeMirror-info tooltip to show above the drawer diff --git a/styles/wpgraphql-ide.css b/styles/wpgraphql-ide.css index b2dccbf..effeb69 100644 --- a/styles/wpgraphql-ide.css +++ b/styles/wpgraphql-ide.css @@ -239,3 +239,6 @@ body.graphql_page_graphql-ide .AppRoot { .graphiql-container .graphiql-editor-tools>button.active { background-color: hsla(var(--color-neutral), var(--alpha-background-medium)); } + +/** Fix for the CodeMirror info tooltip */ +.CodeMirror-info { z-index: 999999; }