From edf344c542cec18d93af55026e151dd5360fcbe0 Mon Sep 17 00:00:00 2001 From: Matt Hillsdon Date: Wed, 28 May 2025 00:43:27 +0100 Subject: [PATCH] fix: Tweak outline CSS for Safari/Firefox (#9100) Without this Safari (desktop) gets an outline still which tears as you drag. In the keyboard nav demo an outline was visible before this change in both Firefox and Safari. Fixes #9099 --- core/css.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/css.ts b/core/css.ts index 6b5e19a58..4f4a4daaf 100644 --- a/core/css.ts +++ b/core/css.ts @@ -505,6 +505,6 @@ input[type=number] { .blocklyIconGroup, .blocklyTextarea ) { - outline-width: 0px; + outline: none; } `;