diff options
| author | default <nobody@localhost> | 2025-01-28 07:48:31 +0100 |
|---|---|---|
| committer | default <nobody@localhost> | 2025-01-28 07:48:31 +0100 |
| commit | d9d2dedbc053b35aee02ba7f408e056ab03368c0 (patch) | |
| tree | 8d2bdac498d1cf7582b6d05eb857461b4fc6c3e7 | |
| parent | 492b91e4e47c43d15bb828ecbe1e4195c47c31f8 (diff) | |
Set the CSS class snac-no-more-unseen-posts.
| -rw-r--r-- | html.c | 13 |
1 files changed, 7 insertions, 6 deletions
@@ -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; |