diff options
author | default <nobody@localhost> | 2023-05-30 09:09:04 +0200 |
---|---|---|
committer | default <nobody@localhost> | 2023-05-30 09:09:04 +0200 |
commit | b98a284f6f243c18f73935526cc7f99ca8a4fac3 (patch) | |
tree | a9cf9b0896a3c33b3418169417d3c6646b34a54c | |
parent | e02beac47e42b44d0b96b077db31c0d0cefa90b7 (diff) |
Wrap attachments in notes behind a "details".
-rw-r--r-- | html.c | 13 |
1 files changed, 13 insertions, 0 deletions
@@ -348,8 +348,12 @@ d_char *html_top_controls(snac *snac, d_char *s) "<input type=\"hidden\" name=\"in_reply_to\" value=\"\">\n" "<p>%s: <input type=\"checkbox\" name=\"sensitive\">\n" "<p>%s: <input type=\"checkbox\" name=\"mentioned_only\">\n" + + "<details><summary>%s</summary>\n" "<p>%s: <input type=\"file\" name=\"attach\">\n" "<p>%s: <input type=\"text\" name=\"alt_text\">\n" + "</details>\n" + "<p><input type=\"submit\" class=\"button\" value=\"%s\">\n" "</form><p>\n" "</div>\n" @@ -446,6 +450,7 @@ d_char *html_top_controls(snac *snac, d_char *s) snac->actor, L("Sensitive content"), L("Only for mentioned people"), + L("Attach..."), L("File"), L("File description"), L("Post"), @@ -617,8 +622,11 @@ xs_str *html_entry_controls(snac *snac, xs_str *os, const xs_dict *msg, const ch "<p>%s: <input type=\"checkbox\" name=\"sensitive\">\n" "<p>%s: <input type=\"checkbox\" name=\"mentioned_only\">\n" + + "<details><summary>%s</summary>\n" "<p>%s: <input type=\"file\" name=\"attach\">\n" "<p>%s: <input type=\"text\" name=\"alt_text\">\n" + "</details>\n" "<input type=\"hidden\" name=\"redir\" value=\"%s_entry\">\n" "<p><input type=\"submit\" class=\"button\" value=\"%s\">\n" @@ -633,6 +641,7 @@ xs_str *html_entry_controls(snac *snac, xs_str *os, const xs_dict *msg, const ch id, L("Sensitive content"), L("Only for mentioned people"), + L("Attach..."), L("File"), L("File description"), md5, @@ -657,8 +666,11 @@ xs_str *html_entry_controls(snac *snac, xs_str *os, const xs_dict *msg, const ch "<p>%s: <input type=\"checkbox\" name=\"sensitive\">\n" "<p>%s: <input type=\"checkbox\" name=\"mentioned_only\">\n" + + "<details><summary>%s</summary>\n" "<p>%s: <input type=\"file\" name=\"attach\">\n" "<p>%s: <input type=\"text\" name=\"alt_text\">\n" + "</details>\n" "<input type=\"hidden\" name=\"redir\" value=\"%s_entry\">\n" "<p><input type=\"submit\" class=\"button\" value=\"%s\">\n" @@ -673,6 +685,7 @@ xs_str *html_entry_controls(snac *snac, xs_str *os, const xs_dict *msg, const ch id, L("Sensitive content"), L("Only for mentioned people"), + L("Attach..."), L("File"), L("File description"), md5, |