Orlan Quijada

No Transition on Theme Change

Oct 25, 2023
wip

const css = document.createElement('style')
css.type = 'text/css'
css.appendChild(
  document.createTextNode(
    `* {
        -webkit-transition: none !important;
        -moz-transition: none !important;
        -o-transition: none !important;
        -ms-transition: none !important;
        transition: none !important;
    }`,
  ),
)
document.head.appendChild(css)

// force the browser to redraw
const _ = window.getComputedStyle(css).opacity
document.head.removeChild(css)