I love google docs but I find a blinking cursor very distracting. The new version of google docs doesn't obey the operating system setting for displaying a solid (non-blinking) cursor.
I see that the cursor is really just a div of class "kix-cursor-caret" where the display property is just from "none" to "inline" on some sort of javascript timer somewhere that causes the cursor to appear to blink.
Does anybody have any idea which javascript line/mand is causing the css property to be changed and displaying the blinking. Any help is greatly appreciated.
I love google docs but I find a blinking cursor very distracting. The new version of google docs doesn't obey the operating system setting for displaying a solid (non-blinking) cursor.
I see that the cursor is really just a div of class "kix-cursor-caret" where the display property is just from "none" to "inline" on some sort of javascript timer somewhere that causes the cursor to appear to blink.
Does anybody have any idea which javascript line/mand is causing the css property to be changed and displaying the blinking. Any help is greatly appreciated.
Share Improve this question asked Nov 30, 2011 at 23:58 prozacprozac 3751 gold badge4 silver badges13 bronze badges 4- 1 Regardless of whether you find a solution, I'd suggest submitting a feature request to Google Docs. – Tim Down Commented Dec 1, 2011 at 0:36
- I did a couple of times over the last year. If you search for google docs cursor blink rate you'll see my messages. But maybe I'm not submitting my requests to the right place. Do you have a link to the site for feature requests? – prozac Commented Dec 1, 2011 at 3:20
- You can suggest a new feature here: google./support/forum/p/Google%20Docs/… – zik Commented Dec 1, 2011 at 9:40
- Some members of the Google Docs team did a Q&A on Reddit a few months ago: reddit./r/IAmA/ments/hylnw/…. There's a a chance there may be something helpful in there. I haven't found a better place to request features: my searches just found what I assume are your requests. – Tim Down Commented Dec 1, 2011 at 9:42
4 Answers
Reset to default 5Currently, this works for me with Stylebot in Chrome:
.kix-cursor {
-webkit-animation-iteration-count: 0;
}
None of the current answers worked for me using Firefox + Stylish. I found a working answer at userstyles [1]:
.docs-text-ui-cursor-blink {
animation-name: none;
}
[1] https://userstyles/styles/125112/google-docs-disable-cursor-blink
Looks like this can actually be solved with CSS. This rule worked for me:
.kix-cursor-caret: inline !important;
I suppose you could add this to some kind of user stylesheet, but I've actually never made one before.
Ian's answer didn't work for me. I used this CSS:
.kix-cursor-caret: {
opacity: 1 !important
}
and put it in a user stylesheet managed by the Stylebot Chrome extension.
This stopped the madness in the current version of Google Docs.