diff options
author | Tor Andersson <tor@ccxvii.net> | 2021-11-10 22:27:46 +0100 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2021-11-13 18:38:17 +0100 |
commit | 0d0dab23fb0ecf16a2abf54295746d7dbd87c2d7 (patch) | |
tree | 84c1ba816d81659860630fa7eb5a798605425161 /views/forum_reply.ejs | |
parent | 66450e7666abdaced2347825a4b9e13bc0528251 (diff) | |
download | server-0d0dab23fb0ecf16a2abf54295746d7dbd87c2d7.tar.gz |
Massive SQL cleanup.
Diffstat (limited to 'views/forum_reply.ejs')
-rw-r--r-- | views/forum_reply.ejs | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/views/forum_reply.ejs b/views/forum_reply.ejs index bf27492..85bafad 100644 --- a/views/forum_reply.ejs +++ b/views/forum_reply.ejs @@ -1,16 +1,13 @@ <%- include('header', { title: thread.subject }) %> <style> input, textarea { width: 100%; max-width: 45em; } -table { width: 100%; max-width: 50em; } -td.body { white-space: pre-wrap; padding: 10px 10px; } -th.author { border-right: none; } -th.time { text-align: right; border-left: none; font-weight: normal; } +table .author { border-right: none; } +table .time { border-left: none; font-weight: normal; } </style> -<table> +<table class="post"> <tr> -<th class="nowrap author"><%= post.author_name %> -<th class="nowrap time"><%= post.ctime %> -<%= post.edited ? "(edited " + post.mtime + ")" : "" %> +<th class="author"><%= post.author_name %> +<th class="time"><%= post.ctime %> <%= post.edited ? "(edited " + post.mtime + ")" : "" %> <tr> <td class="body" colspan="2"><%- post.body %></td> </table> |