Skip to content

Commit

Permalink
Fix paper-input with type"date" not being editable when empty on iOS (
Browse files Browse the repository at this point in the history
  • Loading branch information
elarb authored and TimvdLippe committed Jan 28, 2018
1 parent 78b1449 commit 5f90662
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions src/lancie-my-area/profile-edit-form.html
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down

0 comments on commit 5f90662

Please sign in to comment.