下線記法
UserCSS.icon
Cosenseの下線記法は(なぜか)HTML側に直接スタイリングされているので、それを打ち消す記述をいれる
underline
code:style.css
.line span:not(.char-index):not(class)style="text-decoration: underline;" {
text-decoration: none !important;
}
.line .deco-\_ {
text-decoration: 1.5px underline solid var(--page-text-color, #444);
}
波線・赤
from /nrem-configs/下線(波線・赤)
cf. 曇りガラス記法 ~
code:style.css
.line .deco-\_.deco-\~class*="deco-\_ deco-\~" {
text-decoration: 1.5px underline wavy light-dark(crimson, lightcoral);
}
2026-06-28 Nrem.icon
#UserCSS