From 324dc9f33d95cdeacf23c0570607900be945d20f Mon Sep 17 00:00:00 2001 From: Tom Clegg Date: Tue, 25 Feb 2014 10:46:11 -0800 Subject: [PATCH] Turn off CSS animation on loading graphic; make it red instead. --- .../app/assets/stylesheets/loading.css | 29 ++++++++++--------- 1 file changed, 15 insertions(+), 14 deletions(-) diff --git a/apps/workbench/app/assets/stylesheets/loading.css b/apps/workbench/app/assets/stylesheets/loading.css index 7a0736ad1f..640f702510 100644 --- a/apps/workbench/app/assets/stylesheets/loading.css +++ b/apps/workbench/app/assets/stylesheets/loading.css @@ -3,21 +3,22 @@ } .rotating { - animation-name: rotateThis; - animation-duration: 2s; - animation-iteration-count: infinite; - animation-timing-function: linear; - -moz-animation-name: rotateThis; - -moz-animation-duration: 2s; - -moz-animation-iteration-count: infinite; - -moz-animation-timing-function: linear; - -ms-animation-name: rotateThis; - -ms-animation-duration: 2s; - -ms-animation-iteration-count: infinite; - -ms-animation-timing-function: linear; - /* Chrome, at least in Linux, renders a horrible shaky mess -- better - not to bother. + color: #f00; + /* Chrome and Firefox, at least in Linux, render a horrible shaky + mess -- better not to bother. + animation-name: rotateThis; + animation-duration: 2s; + animation-iteration-count: infinite; + animation-timing-function: linear; + -moz-animation-name: rotateThis; + -moz-animation-duration: 2s; + -moz-animation-iteration-count: infinite; + -moz-animation-timing-function: linear; + -ms-animation-name: rotateThis; + -ms-animation-duration: 2s; + -ms-animation-iteration-count: infinite; + -ms-animation-timing-function: linear; -webkit-animation-name: rotateThis; -webkit-animation-duration: 2s; -webkit-animation-iteration-count: infinite; -- 2.30.2