From 49b18368b1dbffbe3f0c192f500523ba7880e085 Mon Sep 17 00:00:00 2001 From: Matt Hillsdon Date: Tue, 27 May 2025 14:14:08 +0100 Subject: [PATCH] fix: Tweak outline CSS for Safari/Firefox 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 6b5e19a585b..4f4a4daaf90 100644 --- a/core/css.ts +++ b/core/css.ts @@ -505,6 +505,6 @@ input[type=number] { .blocklyIconGroup, .blocklyTextarea ) { - outline-width: 0px; + outline: none; } `;