From fdb2742817c0997f679b77ab9e10603827890560 Mon Sep 17 00:00:00 2001 From: Jason Bahl Date: Fri, 19 Apr 2024 14:03:50 -0600 Subject: [PATCH 1/2] - update z-index of the CodeMirror-info tooltip to show above the drawer --- styles/wpgraphql-ide.css | 3 +++ 1 file changed, 3 insertions(+) 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; } From 195dba93ddd0561d9ea73c45d691ca8d222a942e Mon Sep 17 00:00:00 2001 From: Joe Fusco Date: Fri, 19 Apr 2024 16:45:25 -0400 Subject: [PATCH 2/2] Add changeset Signed-off-by: Joe Fusco --- .changeset/itchy-queens-confess.md | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .changeset/itchy-queens-confess.md 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