generated at
scrapbox-editor-cursor

カーソル行を強調表示する
style.css
.cursor-line { background-color: rgba(0, 0, 0, .02); box-shadow: inset 0 -5px 5px -5px rgba(0, 0, 0, .3); }

カーソルを太くする
style.css
.cursor { width: 4px !important; background-color: rgb(57, 172, 134); } /* 黒い線が気になるのでカーソルと同じ色にする */ .cursor {f color: rgb(57, 172, 134); border-color: rgb(57, 172, 134); } .cursor svg { display: none; }

カーソルを点滅表示する ※無効
style.css-x
@keyframes blink { 0% { opacity: 0; } 49% { opacity: 0; } 50% { opacity: 1; } } .cursor { animation: blink .4s infinite } /* 同時作業中のユーザーのカーソルは点滅させない */ .shared-cursors .cursor { background-color: #309030; animation: none }