summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar default2024-10-19 17:49:02 +0200
committerGravatar default2024-10-19 17:49:02 +0200
commite1df0d0d57c61df222a3d8d2eb02e82578b6fb3f (patch)
tree9d4a88624d100fe0cbc5648d632717ffa1aed234
parentFixed Draft: label title. (diff)
downloadsnac2-e1df0d0d57c61df222a3d8d2eb02e82578b6fb3f.tar.gz
snac2-e1df0d0d57c61df222a3d8d2eb02e82578b6fb3f.tar.xz
snac2-e1df0d0d57c61df222a3d8d2eb02e82578b6fb3f.zip
Tweaked HTML for the notifications page.
-rw-r--r--html.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/html.c b/html.c
index cd7fb71..11a600a 100644
--- a/html.c
+++ b/html.c
@@ -2662,7 +2662,9 @@ xs_str *html_notifications(snac *user, int skip, int show)
2662 xs_html_text(L("New")))); 2662 xs_html_text(L("New"))));
2663 2663
2664 xs_html_add(body, 2664 xs_html_add(body,
2665 noti_new); 2665 xs_html_tag("div",
2666 xs_html_attr("class", "snac-posts"),
2667 noti_new));
2666 } 2668 }
2667 2669
2668 xs_html_add(noti_new, 2670 xs_html_add(noti_new,
@@ -2677,7 +2679,9 @@ xs_str *html_notifications(snac *user, int skip, int show)
2677 xs_html_text(L("Already seen")))); 2679 xs_html_text(L("Already seen"))));
2678 2680
2679 xs_html_add(body, 2681 xs_html_add(body,
2680 noti_seen); 2682 xs_html_tag("div",
2683 xs_html_attr("class", "snac-posts"),
2684 noti_seen));
2681 } 2685 }
2682 2686
2683 xs_html_add(noti_seen, 2687 xs_html_add(noti_seen,