From 5f9066251acc7b3f2816a21a2543cc2cdb555b39 Mon Sep 17 00:00:00 2001 From: e_lar Date: Sun, 28 Jan 2018 21:12:34 +0100 Subject: [PATCH] Fix `paper-input` with type"date" not being editable when empty on iOS (#590) --- src/lancie-my-area/profile-edit-form.html | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/src/lancie-my-area/profile-edit-form.html b/src/lancie-my-area/profile-edit-form.html index 154e24ab..158127c0 100644 --- a/src/lancie-my-area/profile-edit-form.html +++ b/src/lancie-my-area/profile-edit-form.html @@ -33,6 +33,17 @@ display: none; } + /* + Workaround for a bug that causes paper-input + with type="date" not being editable when empty + (PolymerElements/paper-input/issues/352). + */ + paper-input[type="date"] { + --paper-input-container-input: { + min-height: 1px; + }; + } + .dropdown-content { min-width: 200px; }