From ee481dfdb5654273ae133b49c07e7cf969f750fe Mon Sep 17 00:00:00 2001 From: Brian Talbot Date: Tue, 9 Jul 2013 12:47:45 -0400 Subject: [PATCH] Studio: resolves notification animation placement error --- cms/static/sass/elements/_system-feedback.scss | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/cms/static/sass/elements/_system-feedback.scss b/cms/static/sass/elements/_system-feedback.scss index add4e11e82..e22e44487c 100644 --- a/cms/static/sass/elements/_system-feedback.scss +++ b/cms/static/sass/elements/_system-feedback.scss @@ -681,10 +681,12 @@ // varying animations &.is-shown { @include animation(notificationSlideUp 1.0s ease-in-out 1); + @include animation-fill-mode(forwards); } &.is-hiding { - @include animation(notificationSlideDown 0.25s ease-in-out 1); + @include animation(notificationSlideDown 1.0s ease-in-out 1); + @include animation-fill-mode(forwards); } } }