Disables blinking caret (cursor) in Google Docs, makes it a bit thicker and gives it a pleasant blue color, ala iA Writer.
Unblinking Blue Caret in Google Docs by jnv
Details
Authorjnv
LicenseCC0
Categorydocs.google.com
Created
Updated
Size643 B
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Userstyle doesn't have notes.Source code
/* ==UserStyle==
@name Unblinking Blue Caret in Google Docs
@version 20211129.13.48
@namespace userstyles.world/user/jnv
@description Disables blinking caret (cursor) in Google Docs, makes it a bit thicker and gives it a pleasant blue color, ala iA Writer.
@author jnv
@license CC0
==/UserStyle== */
@-moz-document domain("docs.google.com") {
.docs-text-ui-cursor-blink {
animation: none !important;
}
/* match only my own caret = the black one */
.kix-cursor-caret[style*="rgb(0, 0, 0)"] {
border-color: #00BBFF !important; border-width: 1px 0 1px 3px; border-style: solid;
}
}