From 3ad80e45d3c89623a1ccddafc4f9c91da13b1db3 Mon Sep 17 00:00:00 2001 From: Kristiyan Kostadinov Date: Thu, 8 Jun 2017 23:33:22 +0200 Subject: [PATCH] fix(button): remove webkit tap highlight (#4953) Removes the overlay that gets added when tapping on something on a mobile Webkit browser. It is unnecessary in our case, because we render a ripple and we have an overlay that darkens focused buttons. --- src/lib/core/style/_button-common.scss | 1 + 1 file changed, 1 insertion(+) diff --git a/src/lib/core/style/_button-common.scss b/src/lib/core/style/_button-common.scss index c5a03c21df47..b75c21c1b77e 100644 --- a/src/lib/core/style/_button-common.scss +++ b/src/lib/core/style/_button-common.scss @@ -6,4 +6,5 @@ cursor: pointer; outline: none; border: none; + -webkit-tap-highlight-color: transparent; }