From df0521af7bb823859634f4dfe5ab351bd2035a91 Mon Sep 17 00:00:00 2001 From: Andrew Joslin Date: Thu, 12 Jun 2014 15:02:08 -0600 Subject: [PATCH] scss(item-floating-label): transition time .2s to .15s --- scss/_form.scss | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/scss/_form.scss b/scss/_form.scss index 1a42fe7b8b..6b2361316d 100644 --- a/scss/_form.scss +++ b/scss/_form.scss @@ -143,8 +143,7 @@ textarea { } .item-stacked-label input, -.item-stacked-label textarea -{ +.item-stacked-label textarea { @include border-radius(2px); padding: 4px 8px 3px; border: none; @@ -165,12 +164,12 @@ textarea { padding: 5px 0 0 0; opacity: 0; top: 10px; - @include transition(opacity .2s ease-in, top .2s linear); + @include transition(opacity .15s ease-in, top .2s linear); &.has-input { opacity: 1; top: 0; - @include transition(opacity .2s ease-in, top .2s linear); + @include transition(opacity .15s ease-in, top .2s linear); } } }