From b1d2ced319bd47591b97f9568476860a1cd72f3c Mon Sep 17 00:00:00 2001 From: Wirlaburla Date: Fri, 9 Jun 2023 20:20:11 -0500 Subject: [PATCH] Add reply-display --- style.css | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/style.css b/style.css index 3b5bf4d..54dc8d9 100644 --- a/style.css +++ b/style.css @@ -1067,6 +1067,37 @@ body.forum.thread table.post-display tr.body-row td * { body.forum.thread table.post-display .author-cell { width: 168px; } body.forum.thread table.post-display tr td:nth-of-type(3) { width: 168px; } +body.forum.thread table.reply-display { + background: var(--forum-sub); + border: var(--forum-sub-border); +} + +body.forum.thread table.reply-display tr th, +body.forum.thread table.reply-display tr td { padding: 2px; } + +body.forum.thread table.reply-display tr:not(.title-row) { + background: var(--post); + border: var(--post-border); +} + +body.forum.thread table.reply-display tr.title-row th:nth-of-type(1) { text-align: left; } +body.forum.thread table.reply-display tr.title-row th:nth-of-type(2), +body.forum.thread table.reply-display tr td:nth-of-type(2){ text-align: right; } + +body.forum.thread table.reply-display tr.title-row { + font-family: var(--primary-font); +} + +body.forum.thread table.reply-display tr.title-row th:nth-of-type(2) button { + background: none; + border: none; + text-decoration: underline; + color: #0000ff; + font-size: 16px; + vertical-align: middle; + cursor: pointer; +} +