]> git.ipfire.org Git - thirdparty/foundation/foundation-sites.git/commitdiff
fix: disable outline when intent is clearly mouse and touch
authorJoe Workman <joe@workmanmail.com>
Mon, 1 Nov 2021 20:26:52 +0000 (13:26 -0700)
committerJoe Workman <joe@workmanmail.com>
Mon, 1 Nov 2021 20:26:52 +0000 (13:26 -0700)
scss/vendor/normalize.scss

index 9de163339050aa4f371fd4ae9a3628d8fc5dfa6a..3c8ef2a6f2e83923457238d75d91465fd096a52e 100644 (file)
   [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;
+    }
+  }
 }