](./images/smilies/eusa_wall.gif)
Is there anyway to disable it? Probably from UserJS/Tampermonkey, or anything?
Thank you
Code: Select all
/* Firefox userContent.css */
@-moz-document url-prefix("https://docs.google.com"), url-prefix("https://www.google.com") {
* { caret-color: red !important; }
}
Code: Select all
.docs-text-ui-cursor-blink
{
animation-name: none;
}
Code: Select all
/* Firefox userContent.css */
@-moz-document url-prefix("https://docs.google.com") {
* { animation: none !important; }
}
Seems they use shadow dom or IFRAME I guess?morat wrote: ↑June 6th, 2023, 6:27 amNicely done.
Similar thread
http://stackoverflow.com/a/43751901
Hmm. I tried the following style, but it didn't work for me.
Adding the entry inside the style element successfully stops the animation in the following example.Code: Select all
/* Firefox userContent.css */ @-moz-document url-prefix("https://docs.google.com") { * { animation: none !important; } }
Example
http://www.w3schools.com/cssref/tryit.p ... ation-name