From 6f523dab3570b27984e8a16d76a12cd6a6f258f8 Mon Sep 17 00:00:00 2001
From: Ray Schamp <ray@scratch.mit.edu>
Date: Wed, 28 Nov 2018 11:57:39 -0500
Subject: [PATCH] Remove color rotation while saving

We have alerts for this now.
Resolves #3893
---
 src/components/menu-bar/menu-bar.css | 13 -------------
 src/components/menu-bar/menu-bar.jsx |  3 +--
 2 files changed, 1 insertion(+), 15 deletions(-)

diff --git a/src/components/menu-bar/menu-bar.css b/src/components/menu-bar/menu-bar.css
index 755517c31..798ceb95c 100644
--- a/src/components/menu-bar/menu-bar.css
+++ b/src/components/menu-bar/menu-bar.css
@@ -196,19 +196,6 @@
     opacity: 0.5;
 }
 
-.save-in-progress {
-  animation: hue-rotate 3s linear infinite;
-}
-
-@keyframes hue-rotate {
-  from {
-    filter: hue-rotate();
-  }
-  to {
-    filter: hue-rotate(360deg);
-  }
-}
-
 .mystuff > a {
   background-repeat: no-repeat;
   background-position: center center;
diff --git a/src/components/menu-bar/menu-bar.jsx b/src/components/menu-bar/menu-bar.jsx
index cb64c5f0d..a9ebe0c5b 100644
--- a/src/components/menu-bar/menu-bar.jsx
+++ b/src/components/menu-bar/menu-bar.jsx
@@ -285,8 +285,7 @@ class MenuBar extends React.Component {
             <Box
                 className={classNames(
                     this.props.className,
-                    styles.menuBar,
-                    {[styles.saveInProgress]: this.props.isUpdating}
+                    styles.menuBar
                 )}
             >
                 <div className={styles.mainMenu}>
-- 
GitLab