From: Joe Workman Date: Mon, 1 Nov 2021 20:26:52 +0000 (-0700) Subject: fix: disable outline when intent is clearly mouse and touch X-Git-Tag: v6.7.4^2~20 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=cfdb789a1d05e79faf8846d52042efbd9899a6ab;p=thirdparty%2Ffoundation%2Ffoundation-sites.git fix: disable outline when intent is clearly mouse and touch --- 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; + } + } }