From cff02a518434426b8356c98ce16afc5bea3cdb11 Mon Sep 17 00:00:00 2001 From: Max Lynch Date: Sun, 13 Dec 2015 20:08:35 -0600 Subject: [PATCH] fix(textarea): negative indent on iOS only. Fixes #4761 --- scss/_form.scss | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/scss/_form.scss b/scss/_form.scss index 117a4007d49..93fb27cd465 100644 --- a/scss/_form.scss +++ b/scss/_form.scss @@ -157,10 +157,10 @@ textarea { } .item-select.item-stacked-label select { - position: relative; - padding: 0px; - max-width: 90%; - direction:ltr; + position: relative; + padding: 0px; + max-width: 90%; + direction:ltr; white-space: pre-wrap; margin: -3px; } @@ -224,6 +224,8 @@ input[type="color"] { input[type="week"] { padding-top: 8px; } +} +.platform-ios { textarea { text-indent: -3px; }