From fa78f7250af14ec88e5720866830a28b5a4c0e63 Mon Sep 17 00:00:00 2001 From: Jimit Ndiaye Date: Mon, 19 Sep 2016 22:58:31 +0100 Subject: [PATCH] fix(theming): set input default color to currentColor in input theme (#1260) (#1262) --- src/lib/input/input.scss | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/lib/input/input.scss b/src/lib/input/input.scss index 799cacc73828..19bdefd6d3c2 100644 --- a/src/lib/input/input.scss +++ b/src/lib/input/input.scss @@ -62,6 +62,9 @@ md-input { // The Material input should match whatever background it is above. background: transparent; + // If background matches current background then so should the color for proper contrast + color: currentColor; + // By default, has a padding, border, outline and a default width. border: none; outline: none;