diff --git a/gui/src/index.html b/gui/src/index.html index 9981adf2..328be2ef 100644 --- a/gui/src/index.html +++ b/gui/src/index.html @@ -855,9 +855,9 @@
- - - + + +
diff --git a/gui/src/styles.css b/gui/src/styles.css index 276ab1d2..70f9376f 100644 --- a/gui/src/styles.css +++ b/gui/src/styles.css @@ -78,3 +78,14 @@ https://stackoverflow.com/questions/13176746/css-keyframe-animation-cpu-usage-is -ms-transform: translateZ(0); will-change: transform; } + +/* force disable transition effects +https://stackoverflow.com/a/9622873 +*/ +.disable-effects { + -webkit-transition: none; + -moz-transition: none; + -ms-transition: none; + -o-transition: none; + transition: none; +}