aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordefault <nobody@localhost>2025-01-28 07:48:31 +0100
committerdefault <nobody@localhost>2025-01-28 07:48:31 +0100
commitd9d2dedbc053b35aee02ba7f408e056ab03368c0 (patch)
tree8d2bdac498d1cf7582b6d05eb857461b4fc6c3e7
parent492b91e4e47c43d15bb828ecbe1e4195c47c31f8 (diff)
Set the CSS class snac-no-more-unseen-posts.
-rw-r--r--html.c13
1 files changed, 7 insertions, 6 deletions
diff --git a/html.c b/html.c
index 771d2af..c27ab99 100644
--- a/html.c
+++ b/html.c
@@ -2660,12 +2660,13 @@ xs_str *html_timeline(snac *user, const xs_list *list, int read_only,
xs *s = xs_fmt("%s/admin#top", user->actor);
xs_html_add(posts,
- xs_html_text(L("No more unseen posts")),
- xs_html_text(" - "),
- xs_html_tag("a",
- xs_html_attr("href", s),
- xs_html_text(L("Back to top"))),
- xs_html_sctag("hr", NULL));
+ xs_html_tag("div",
+ xs_html_attr("class", "snac-no-more-unseen-posts"),
+ xs_html_text(L("No more unseen posts")),
+ xs_html_text(" - "),
+ xs_html_tag("a",
+ xs_html_attr("href", s),
+ xs_html_text(L("Back to top")))));
}
mark_shown = 1;