css: fix lists with RTL

changes text-align:left to start, and margin-left: to
margin-inline-start:. Submitted a PR to a17t to change these values as
well. For #450.
This commit is contained in:
Harvey Tindall
2025-12-09 15:06:49 +00:00
parent 6237620390
commit 63c770db73

View File

@@ -487,3 +487,12 @@ section.section:not(.\~neutral) {
.force-ltr {
direction: ltr !important;
}
.content ul, .content ol {
margin-left: unset;
margin-inline-start: 2rem;
}
.content li {
text-align: start;
}