From c23ce863effd3dfc611b22ba59085d4374502acb Mon Sep 17 00:00:00 2001 From: multiple creatures Date: Sun, 18 Aug 2019 20:21:31 -0500 Subject: limit animations in dt themes --- app/javascript/flavours/glitch/styles/arachnia/diff.scss | 16 ++++++++-------- app/javascript/flavours/glitch/styles/orctober/diff.scss | 6 +++--- app/javascript/flavours/glitch/styles/seadrake/diff.scss | 16 ++++++++-------- app/javascript/flavours/glitch/styles/tentacle/diff.scss | 4 ++-- 4 files changed, 21 insertions(+), 21 deletions(-) diff --git a/app/javascript/flavours/glitch/styles/arachnia/diff.scss b/app/javascript/flavours/glitch/styles/arachnia/diff.scss index e6f5359e3..aa63a8bac 100644 --- a/app/javascript/flavours/glitch/styles/arachnia/diff.scss +++ b/app/javascript/flavours/glitch/styles/arachnia/diff.scss @@ -352,10 +352,10 @@ -ms-transition: all 2s ease-in-out; transition: all 2s ease-in-out; - -moz-animation: blink-off normal 4s 5 ease-in-out; - -webkit-animation: blink-off normal 4s 5 ease-in-out; - -ms-animation: blink-off normal 4s 5 ease-in-out; - animation: blink-off normal 4s 5 ease-in-out; + -moz-animation: blink-off normal 4s 1 ease-in-out; + -webkit-animation: blink-off normal 4s 1 ease-in-out; + -ms-animation: blink-off normal 4s 1 ease-in-out; + animation: blink-off normal 4s 1 ease-in-out; } // Active item banimation @@ -382,10 +382,10 @@ -ms-transition: all 1s ease-in-out; transition: all 1s ease-in-out; - -moz-animation: blink-on normal 2s 5 ease-in-out; - -webkit-animation: blink-on normal 2s 5 ease-in-out; - -ms-animation: blink-on normal 2s 5 ease-in-out; - animation: blink-on normal 2s 5 ease-in-out; + -moz-animation: blink-on normal 2s 1 ease-in-out; + -webkit-animation: blink-on normal 2s 1 ease-in-out; + -ms-animation: blink-on normal 2s 1 ease-in-out; + animation: blink-on normal 2s 1 ease-in-out; } // Scrollbar in Chrome/Webkit browsers diff --git a/app/javascript/flavours/glitch/styles/orctober/diff.scss b/app/javascript/flavours/glitch/styles/orctober/diff.scss index 1498079c3..58852ab9b 100644 --- a/app/javascript/flavours/glitch/styles/orctober/diff.scss +++ b/app/javascript/flavours/glitch/styles/orctober/diff.scss @@ -339,7 +339,7 @@ .icon-button.disabled { opacity: .75; transition: all 2s ease-in-out; - animation: blink-off normal 4s 5 ease-in-out; + animation: blink-off normal 4s 1 ease-in-out; } @-webkit-keyframes blink-on { @@ -361,8 +361,8 @@ transform: scale(1.5); -webkit-transition: all 1s ease-in-out; transition: all 1s ease-in-out; - -webkit-animation: blink-on normal 2s 5 ease-in-out; - animation: blink-on normal 2s 5 ease-in-out; + -webkit-animation: blink-on normal 2s 1 ease-in-out; + animation: blink-on normal 2s 1 ease-in-out; } ::-webkit-scrollbar-thumb { diff --git a/app/javascript/flavours/glitch/styles/seadrake/diff.scss b/app/javascript/flavours/glitch/styles/seadrake/diff.scss index f42c2a1e6..804ff0985 100644 --- a/app/javascript/flavours/glitch/styles/seadrake/diff.scss +++ b/app/javascript/flavours/glitch/styles/seadrake/diff.scss @@ -335,10 +335,10 @@ -ms-transition: all 2s ease-in-out; transition: all 2s ease-in-out; - -moz-animation: blink-off normal 4s 5 ease-in-out; - -webkit-animation: blink-off normal 4s 5 ease-in-out; - -ms-animation: blink-off normal 4s 5 ease-in-out; - animation: blink-off normal 4s 5 ease-in-out; + -moz-animation: blink-off normal 4s 1 ease-in-out; + -webkit-animation: blink-off normal 4s 1 ease-in-out; + -ms-animation: blink-off normal 4s 1 ease-in-out; + animation: blink-off normal 4s 1 ease-in-out; } // Active item banimation @@ -365,10 +365,10 @@ -ms-transition: all 1s ease-in-out; transition: all 1s ease-in-out; - -moz-animation: blink-on normal 2s 5 ease-in-out; - -webkit-animation: blink-on normal 2s 5 ease-in-out; - -ms-animation: blink-on normal 2s 5 ease-in-out; - animation: blink-on normal 2s 5 ease-in-out; + -moz-animation: blink-on normal 2s 1 ease-in-out; + -webkit-animation: blink-on normal 2s 1 ease-in-out; + -ms-animation: blink-on normal 2s 1 ease-in-out; + animation: blink-on normal 2s 1 ease-in-out; } // Scrollbar in Chrome/Webkit browsers diff --git a/app/javascript/flavours/glitch/styles/tentacle/diff.scss b/app/javascript/flavours/glitch/styles/tentacle/diff.scss index d1018bdb9..02c0cceab 100644 --- a/app/javascript/flavours/glitch/styles/tentacle/diff.scss +++ b/app/javascript/flavours/glitch/styles/tentacle/diff.scss @@ -389,7 +389,7 @@ { opacity: .75; transition: all 2s ease-in-out; - animation: blink-off normal 4s 5 ease-in-out; + animation: blink-off normal 4s 1 ease-in-out; } @-webkit-keyframes blink-on @@ -412,7 +412,7 @@ color: #946; transform: scale(1.5); transition: all 1s ease-in-out; - animation: blink-on normal 2s 5 ease-in-out; + animation: blink-on normal 2s 1 ease-in-out; } ::-webkit-scrollbar-thumb -- cgit