カーソル行を強調するUserCSS
from /foldrr/scrapbox-editor-cursor
https://gyazo.com/330af3e3363f88745a606ecd3bba3eeb
カーソルのある行の背景を強調するUserCSS
code:style.css
html:is(data-project-theme="default-dark", data-project-theme="paper-dark-dark") {
--cursor-line-bg: rgb(255 255 255 / 4%);
--cursor-line-shadow: rgb(255 255 255 / 40%);
}
.cursor-line {
background-color: var(--cursor-line-bg, rgb(0 0 0 / 2%));
box-shadow: inset 0 -5px 5px -5px var(--cursor-line-shadow, rgb(0 0 0 / 30%));
}
変更点
テーマに合わせて色を変更した
#2025-01-20 01:44:02 :isでまとめた
#2025-01-11 ライトモード/ダークモードで自動で切り替わるようにした