From cfdb789a1d05e79faf8846d52042efbd9899a6ab Mon Sep 17 00:00:00 2001 From: Joe Workman Date: Mon, 1 Nov 2021 13:26:52 -0700 Subject: [PATCH] fix: disable outline when intent is clearly mouse and touch --- scss/vendor/normalize.scss | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/scss/vendor/normalize.scss b/scss/vendor/normalize.scss index 9de163339..3c8ef2a6f 100644 --- a/scss/vendor/normalize.scss +++ b/scss/vendor/normalize.scss @@ -279,4 +279,14 @@ [hidden] { display: none; } + + // Disable outline when intent is clearly mouse and touch + [data-whatintent="mouse"], + [data-whatintent="touch"], + [data-whatinput="mouse"], + [data-whatinput="touch"] { + *, *:focus { + outline:none; + } + } } -- 2.47.2