From 858e8da2aabd9ae3d0a3594b879baf1f51480034 Mon Sep 17 00:00:00 2001 From: Miles Malerba Date: Fri, 21 Apr 2017 14:48:51 -0700 Subject: [PATCH] fix(input): add back pointer-events: none removed in #3878 --- src/lib/input/input-container.scss | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/lib/input/input-container.scss b/src/lib/input/input-container.scss index a21274eee81f..74e6dcfeeb08 100644 --- a/src/lib/input/input-container.scss +++ b/src/lib/input/input-container.scss @@ -132,6 +132,7 @@ $mat-input-underline-disabled-background-image: top: 0; font-size: 100%; + pointer-events: none; // We shouldn't catch mouse events (let them through). z-index: 1; padding-top: 1em; @@ -180,6 +181,7 @@ $mat-input-underline-disabled-background-image: width: 100%; padding-top: 1em; overflow: hidden; + pointer-events: none; // We shouldn't catch mouse events (let them through). transform: translate3d(0, 0, 0); // Prevents the label from shifting after the animation is done. // Keeps the element height since the placeholder text is `position: absolute`.