diff options
author | Tor Andersson <tor@ccxvii.net> | 2021-11-19 02:45:51 +0100 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2021-11-19 02:48:53 +0100 |
commit | 1a71184bcbf714d266e80d186fd666d393ed5981 (patch) | |
tree | cac3322f867a501ac6c3c160c47ee3efb875b1a1 /views/forum_reply.ejs | |
parent | acc03c79e0d1a1265922b05abafd1c4a18a627a0 (diff) | |
download | server-1a71184bcbf714d266e80d186fd666d393ed5981.tar.gz |
Clean up stylesheets. Don't show options in game lists.
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> |