From bafd0b057eceae261da82e52ad78c65f08ddd166 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Wed, 3 Dec 2014 11:23:53 -0800 Subject: [PATCH] fix broken textarea.form-control reported by @thomas-mcdonald --- scss/_forms.scss | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/scss/_forms.scss b/scss/_forms.scss index 351e66a020..c380367ac1 100644 --- a/scss/_forms.scss +++ b/scss/_forms.scss @@ -148,13 +148,13 @@ output { background-color: $input-bg-disabled; opacity: 1; // iOS fix for unreadable disabled content } +} - // Reset height for `textarea`s - &textarea { - height: auto; - padding-top: $padding-base-horizontal; - padding-bottom: $padding-base-horizontal; - } +// Reset height for `textarea`s +textarea.form-control { + height: auto; + padding-top: $padding-base-horizontal; + padding-bottom: $padding-base-horizontal; }