From c71e9cf618b92e4e966f5c04a00c1889fedd1de2 Mon Sep 17 00:00:00 2001 From: probablycorey Date: Mon, 21 Oct 2013 17:19:41 -0700 Subject: [PATCH] Add flashError css --- static/utilities.less | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/static/utilities.less b/static/utilities.less index 74b0bc030..0a0183ce6 100644 --- a/static/utilities.less +++ b/static/utilities.less @@ -60,3 +60,13 @@ div > .inline-block-tight:last-child { margin-left: 0; } } + +.error { + -webkit-animation: flash-error 0.3s ease-in; +} + +@-webkit-keyframes flash-error { + 0% { background: @background-color-error; } + + 100% { background: auto; } +}