lists in post bodies

This commit is contained in:
rimu 2025-01-01 11:39:51 +13:00
parent 93ee376525
commit ad46ab7efe
2 changed files with 16 additions and 0 deletions

View file

@ -1493,6 +1493,12 @@ fieldset legend {
width: 100%; width: 100%;
overflow-x: auto; overflow-x: auto;
} }
.post_body ol li, .post_body ul li, .comment_body ol li, .comment_body ul li {
margin-bottom: 7px;
}
.post_body ol li > p, .post_body ul li > p, .comment_body ol li > p, .comment_body ul li > p {
margin-bottom: 0;
}
.skip-link:focus { .skip-link:focus {
top: 0; top: 0;

View file

@ -1163,6 +1163,16 @@ fieldset {
width: 100%; width: 100%;
overflow-x: auto; overflow-x: auto;
} }
ol, ul {
li {
margin-bottom: 7px;
> p {
margin-bottom: 0;
}
}
}
} }
.skip-link:focus { .skip-link:focus {