インデントに応じて箇条書きのbulletの色を薄くする
インデントに応じて箇条書きのbulletの色を薄くする
code:style.css
/*インデントに応じてBulletの色を薄くする */
.line .indent-mark .dot {
opacity: 0.1 !important;
}
.line .indent-mark .c-0 + .dot {
opacity: 1.0 !important;
}
.line .indent-mark .c-1 + .dot {
opacity: 0.8 !important;
}
.line .indent-mark .c-2 + .dot {
opacity: 0.6 !important;
}
.line .indent-mark .c-3 + .dot {
opacity: 0.4 !important;
}
.line .indent-mark .c-4 + .dot {
opacity: 0.2 !important;
}