Important css override
element.setAttribute('style', 'display:inline !important');
Overriding !important style
Title pretty much sums it up. The external style sheet has the following code: td.EvenRow a { display: none !important; } I have tried using: element.style.display = "inline"; and element.s...
https://stackoverflow.com/questions/462537/overriding-important-style
transition
document.getElementById("myDIV").style.transitionDuration = "1s";
Style transitionDuration Property
❮ Style Object Speed up the transition effect: Try it Yourself " The transitionDuration property sets or returns how many seconds (s) or milliseconds (ms) a transition effect takes to complete. The numbers in the table specify the first browser version that fully supports the property.
https://www.w3schools.com/jsref/prop_style_transitionduration.asp

cloud.stats.dom.style.cssText = 'position:absolute;top:0px;right:0px;'

Seonglae Cho