From dd126f25590345dfd5fd36919252a727f7376427 Mon Sep 17 00:00:00 2001 From: LordBaryhobal Date: Mon, 1 Jun 2026 14:48:24 +0200 Subject: [PATCH] fix(cli): improve diagnostic message popup --- midas/cli/hl_diagnostic.css | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/midas/cli/hl_diagnostic.css b/midas/cli/hl_diagnostic.css index 9cd0671..8b09b7f 100644 --- a/midas/cli/hl_diagnostic.css +++ b/midas/cli/hl_diagnostic.css @@ -13,9 +13,14 @@ span { &.with-msg { position: relative; - &:not(:hover) { + + .message { + display: none; + } + + &:hover:not(:has(.with-msg:hover)) { .message { - display: none; + display: inline-block; } }