from settings
インデント表示
/villagepump/インデントに縦線を表示するようにした
style.css_deprecated
.app:not(.presentation) .indent-mark .char-index:not(:nth-last-child(1)):not(:nth-last-child(2)) {
position: relative;
}
.app:not(.presentation) .indent-mark .char-index:not(:nth-last-child(1)):not(:nth-last-child(2))::before {
content: " ";
position: absolute;
left: 50%;
margin: -12px -1.6px;
}
.app:not(.presentation) .indent-mark .char-index:nth-child(2n+1)::before {
border-left: 2px solid #eee; /* 色の指定 */
}
.app:not(.presentation) .indent-mark .char-index:nth-child(2n+2)::before {
border-left: 2px solid #ddd;
}
::beforeを使わない方式でも作ったnew version style.css
.indent-mark {
height: 100% !important;
}
.indent-mark .pad {
height: 100% !important;
overflow: unset !important;
}
.indent-mark span:nth-child(2n+2) .pad {
background: #f8f8f8;
}
a
よさげ