diff options
| author | Joe Carstairs <me@joeac.net> | 2026-06-18 08:45:51 +0100 |
|---|---|---|
| committer | Joe Carstairs <me@joeac.net> | 2026-06-18 08:45:51 +0100 |
| commit | 35ef330df8e70676b19267396cc05ce91f67a38d (patch) | |
| tree | 18e66f5caa05749a163fd696f4a01af51b8cd399 /http | |
| parent | 348b76aa048f665d94f31ce8c7432cadb6b99d8f (diff) | |
fix css bug in http microlog: ul inside microlog posts not getting list
markers
Diffstat (limited to 'http')
| -rw-r--r-- | http/src/css/base.uppcss | 5 | ||||
| -rw-r--r-- | http/src/css/feed.uppcss | 9 |
2 files changed, 9 insertions, 5 deletions
diff --git a/http/src/css/base.uppcss b/http/src/css/base.uppcss index 7509a24..b0e8565 100644 --- a/http/src/css/base.uppcss +++ b/http/src/css/base.uppcss @@ -305,11 +305,6 @@ strong { /** Blog feed */ -.h-feed ul { - list-style: none; - margin-inline: 0; -} - /** Block quotes */ blockquote { padding-inline-start: var(--spacing-inline-lg); diff --git a/http/src/css/feed.uppcss b/http/src/css/feed.uppcss index 7a63981..60fcd6d 100644 --- a/http/src/css/feed.uppcss +++ b/http/src/css/feed.uppcss @@ -3,6 +3,15 @@ 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 { display: flex; flex-direction: column; |
