lists.css
ASCII text
1ul { 2list-style: var(--list-style, var(--style-unordered-list)); 3} 4 5ul > li::marker { 6color: var(--color-unordered-list-marker); 7font: var(--font-unordered-list-marker); 8display: block; 9} 10 11ul:not(.noindent) { 12margin-left: var(--indent-unordered-list); 13} 14 15ol { 16list-style: var(--list-style, var(--style-ordered-list)); 17} 18 19ol > li::marker { 20color: var(--color-ordered-list-marker); 21font: var(--font-ordered-list-marker); 22display: block; 23} 24 25ol:not(.noindent, .toast-container) { 26margin-left: var(--indent-ordered-list); 27} 28