From b7e2bbef961d94972b5c876aaeb4ca9de00a962b Mon Sep 17 00:00:00 2001 From: James Prado Date: Tue, 27 Mar 2018 17:06:55 -0400 Subject: [PATCH] Fix textarea styles (#1398) --- common/components/ui/Input.scss | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/common/components/ui/Input.scss b/common/components/ui/Input.scss index 386b8ef4..e87de80d 100644 --- a/common/components/ui/Input.scss +++ b/common/components/ui/Input.scss @@ -62,6 +62,9 @@ box-shadow: inset 0 1px 0 0 rgba(63, 63, 68, 0.05); transition: border-color 120ms, box-shadow 120ms; margin-bottom: 1rem; + &[placeholder] { + text-overflow: ellipsis; + } &.border-rad-right-0 { border-top-right-radius: 0; @@ -99,3 +102,7 @@ left: 24px; } } + +textarea.input-group-input { + height: initial; +}