Browse Source

Merge pull request 'html.c: html_user_body: snac-property: Put &nbsp; (empty space) instead of <br> & other' (#142) from Yonle/snac2:master into master

Reviewed-on: https://codeberg.org/grunfink/snac2/pulls/142
grunfink 1 year ago
parent
commit
8126fb97ce
3 changed files with 3 additions and 3 deletions
  1. 1 1
      doc/style.css
  2. 1 1
      html.c
  3. 1 1
      utils.c

+ 1 - 1
doc/style.css

@@ -26,7 +26,7 @@ pre { overflow-x: scroll; }
 .snac-footer { margin-top: 2em; font-size: 75% }
 .snac-poll-result { margin-left: auto; margin-right: auto; }
 @media (prefers-color-scheme: dark) { 
-  body { background-color: #000; color: #fff; }
+  body, input, textarea { background-color: #000; color: #fff; }
   a { color: #7799dd }
   a:visited { color: #aa99dd }
 }

+ 1 - 1
html.c

@@ -820,7 +820,7 @@ static xs_html *html_user_body(snac *user, int read_only)
                         xs_html_attr("class", "snac-property-name"),
                         xs_html_text(k)),
                     xs_html_text(":"),
-                    xs_html_sctag("br", NULL),
+                    xs_html_raw("&nbsp;"),
                     xs_html_tag("span",
                         xs_html_attr("class", "snac-property-value"),
                         value),

+ 1 - 1
utils.c

@@ -66,7 +66,7 @@ static const char *default_css =
     ".snac-footer { margin-top: 2em; font-size: 75% }\n"
     ".snac-poll-result { margin-left: auto; margin-right: auto; }\n"
     "@media (prefers-color-scheme: dark) { \n"
-    "  body { background-color: #000; color: #fff; }\n"
+    "  body, input, textarea { background-color: #000; color: #fff; }\n"
     "  a { color: #7799dd }\n"
     "  a:visited { color: #aa99dd }\n"
     "}\n"