From 6b00cdc4943d7659db967beb96b11bb1ddf38bd3 Mon Sep 17 00:00:00 2001 From: Buck Doyle Date: Tue, 20 Feb 2024 16:00:16 -0600 Subject: [PATCH] host: Fix deployed read-only code mode tooltips --- packages/host/app/styles/app.css | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/packages/host/app/styles/app.css b/packages/host/app/styles/app.css index 87dc275151..55db6507fe 100644 --- a/packages/host/app/styles/app.css +++ b/packages/host/app/styles/app.css @@ -25,15 +25,15 @@ position: absolute; font: var(--boxel-tooltip-font, var(--boxel-font-xs)); z-index: 5; +} - .message { - padding: 0; - color: inherit; - background-color: transparent; - border: 0; - } +.ember-application .monaco-editor .monaco-editor-overlaymessage .message { + padding: 0; + color: inherit; + background-color: transparent; + border: 0; +} - .anchor.top, .anchor.below { - display: none; - } +.ember-application .monaco-editor .monaco-editor-overlaymessage .anchor.top, .ember-application .monaco-editor .monaco-editor-overlaymessage .anchor.below { + display: none; }