From eca108a1f75a6fd01e330567df65e4c58157dd7d Mon Sep 17 00:00:00 2001 From: Bruno Queiros Date: Mon, 8 Sep 2014 16:04:22 -0300 Subject: [PATCH] Added style to textarea on .input-row class --- sass/forms.scss | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/sass/forms.scss b/sass/forms.scss index abc3c7e..98cf537 100644 --- a/sass/forms.scss +++ b/sass/forms.scss @@ -92,7 +92,7 @@ select { // To use labels with input groups, wrap a label and an input in an .input-row .input-row { overflow: hidden; - height: 35px; // Matches the height of inputs. + min-height: 35px; // Matches the height of inputs. border-bottom: $border-default; } @@ -106,10 +106,15 @@ select { } // Actual inputs float to right of labels and also have a set percentage -.input-row input { +.input-row input, +.input-row textarea { float: right; width: 65%; padding-left: 0; margin-bottom: 0; border: 0; } + +.input-row textarea { + padding-top: 7px; +} \ No newline at end of file