fix css bug in http microlog: ul inside microlog posts not getting list
markers
This commit is contained in:
@@ -305,11 +305,6 @@ strong {
|
|||||||
|
|
||||||
/** Blog feed */
|
/** Blog feed */
|
||||||
|
|
||||||
.h-feed ul {
|
|
||||||
list-style: none;
|
|
||||||
margin-inline: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
/** Block quotes */
|
/** Block quotes */
|
||||||
blockquote {
|
blockquote {
|
||||||
padding-inline-start: var(--spacing-inline-lg);
|
padding-inline-start: var(--spacing-inline-lg);
|
||||||
|
|||||||
@@ -3,6 +3,15 @@
|
|||||||
margin-block-start: var(--spacing-block-md);
|
margin-block-start: var(--spacing-block-md);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.h-feed ul:has(> .h-entry) {
|
||||||
|
list-style-type: none;
|
||||||
|
margin-inline: 0;
|
||||||
|
|
||||||
|
ul {
|
||||||
|
list-style-type: disc;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
.h-feed .h-entry {
|
.h-feed .h-entry {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
|
|||||||
Reference in New Issue
Block a user