diff options
| author | default <nobody@localhost> | 2025-04-05 13:51:03 +0200 |
|---|---|---|
| committer | default <nobody@localhost> | 2025-04-05 13:51:03 +0200 |
| commit | 9f6d34eddadafbd79bc608c1cb650d9c90b5a0d3 (patch) | |
| tree | a8b7171e9965b2b21c7c17b39168e0af38722ceb /html.c | |
| parent | bb5a2445dac94a4d90b7d455b7723416a3df13ba (diff) | |
Use <hr hidden> instead of 'display: none' style.
Diffstat (limited to 'html.c')
| -rw-r--r-- | html.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2734,7 +2734,7 @@ 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"))); + xs_html_attr("hidden", NULL))); return entry_top; } |