diff options
| author | default <nobody@localhost> | 2025-04-04 16:48:11 +0200 |
|---|---|---|
| committer | default <nobody@localhost> | 2025-04-04 16:48:11 +0200 |
| commit | bb5a2445dac94a4d90b7d455b7723416a3df13ba (patch) | |
| tree | 573b1604f2325c994042c3314996676ec114d12f | |
| parent | 06cc93a5dbda3432c153f745decb4b697a5d2a91 (diff) | |
Added a (CSS hidden) hr tag after each post.
| -rw-r--r-- | html.c | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -2731,6 +2731,11 @@ xs_html *html_entry(snac *user, xs_dict *msg, int read_only, } } + /* add an invisible hr, to help differentiate between posts in text browsers */ + xs_html_add(entry_top, + xs_html_sctag("hr", + xs_html_attr("style", "display: none"))); + return entry_top; } |