diff options
Diffstat (limited to 'views/forum_reply.ejs')
-rw-r--r-- | views/forum_reply.ejs | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/views/forum_reply.ejs b/views/forum_reply.ejs index 3e87ddd..db777b6 100644 --- a/views/forum_reply.ejs +++ b/views/forum_reply.ejs @@ -1,13 +1,15 @@ -<%- include('header', { title: thread.subject }) %> +<%- include('header', { title: thread.subject }) -%> <style> input, textarea { width: 100%; max-width: 45em; } +table { max-width: 50em; } table .author { border-right: none; } table .time { border-left: none; font-weight: normal; } +table .command { border: none; } </style> <table class="post"> <tr> <th class="author"><%= post.author_name %> -<th class="time"><%= post.ctime %> <%= post.edited ? "(edited " + post.mtime + ")" : "" %> +<th class="r time"><%= post.ctime %> <%= post.edited ? "(edited " + post.mtime + ")" : "" %> <tr> <td class="body" colspan="2"><%- post.body %></td> </table> |