From 45c142636caf9cb8800284c771cf68ddc02ecc69 Mon Sep 17 00:00:00 2001 From: Rachel Fenichel Date: Thu, 1 May 2025 11:18:27 -0700 Subject: [PATCH] fix: remove black outline on focused items (#8951) --- core/css.ts | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/core/css.ts b/core/css.ts index ed47e8037..e1a2a10d3 100644 --- a/core/css.ts +++ b/core/css.ts @@ -494,4 +494,13 @@ input[type=number] { cursor: grabbing; } +.blocklyActiveFocus:is( + .blocklyFlyout, + .blocklyWorkspace, + .blocklyField, + .blocklyPath, + .blocklyHighlightedConnectionPath +) { + outline-width: 0px; +} `;