引用文の padding を --indent-width に合わせる
UserCSS.icon
#引用ブロックの行頭を揃える
--indent-width
0
1
1
1
2
2
2
3
3
3
2
1
0.
1.
1.
1.
2.
2.
1.
0.
from Aureolo
code:style.css
.line .quote {
display: block; box-sizing: border-box;
border-left: solid var(--quote-border-width, 1px) var(--quote-border-color, #a0a0a0);
padding-left: calc(var(--indent-width, 1.5em) - var(--quote-border-width, 1px));
padding-right: var(--quote-padding-end, 0);
background-color: var(--quote-bg-color, rgba(0, 0, 0, 0.05));
color: var(--quote-text-color, var(--page-text-color));
font-family: var(--quote-font-family, inherit);
font-feature-settings: var(--quote-font-feature-settings);
font-weight: var(--quote-font-weight);
}
.line.cursor-line .quote {
/* padding-left: 3px; */
padding-left: calc(2px + var(--quote-border-width, 1px));
}
from 引用ブロックの行頭を揃える
code:style.css
.line:not(.cursor-line) .quote > .tag:has(+ *) { display: none; }
.line .quote > .tag { vertical-align: top; }
#引用ブロック
#UserCSS