commit bb5a2445dac94a4d90b7d455b7723416a3df13ba
parent 06cc93a5dbda3432c153f745decb4b697a5d2a91
Author: default <nobody@localhost>
Date: Fri, 4 Apr 2025 16:48:11 +0200
Added a (CSS hidden) hr tag after each post.
Diffstat:
1 file changed, 5 insertions(+), 0 deletions(-)
diff --git a/html.c b/html.c
@@ -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;
}