From 7dd90d424288a35f94dcc08c96f86b2ac50123ed Mon Sep 17 00:00:00 2001 From: DJ2LS <75909252+DJ2LS@users.noreply.github.com> Date: Thu, 26 Jan 2023 15:30:42 +0100 Subject: [PATCH] force gpu usage for all canvas and progress bars --- gui/src/index.html | 6 +++--- gui/src/styles.css | 11 +++++++++++ 2 files changed, 14 insertions(+), 3 deletions(-) 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; +}