From bb640e9abd05b9cbe97a837dc43dc39b9b211a52 Mon Sep 17 00:00:00 2001 From: Jonathan Sharpe Date: Mon, 18 Apr 2016 23:04:44 +0100 Subject: [PATCH] Animate all working builds and make error pane subtler --- flash/static/styles/default.css | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/flash/static/styles/default.css b/flash/static/styles/default.css index 9405708..691e233 100644 --- a/flash/static/styles/default.css +++ b/flash/static/styles/default.css @@ -30,7 +30,7 @@ h1 { .service-tile.tile-error { border-left: 15px solid rgb(187, 52, 52); - -webkit-animation: failed-animation 5s infinite; + -webkit-animation: error-animation 5s infinite; } .service-name { @@ -85,9 +85,6 @@ h1 { .build-outcome.working { background-color: rgb(52, 123, 52); -} - -.build-outcome:first-child.working { -webkit-animation: working-animation 3s infinite; } @@ -109,3 +106,7 @@ footer { @-webkit-keyframes working-animation { 50% {background: rgb(187, 52, 52);} } + +@-webkit-keyframes error-animation { + 50% {background: rgb(73, 31, 31);} +}