From ad31cf8772b4d470d19a2b4210541efe9b93de3e Mon Sep 17 00:00:00 2001 From: Wirlaburla Date: Fri, 9 Jun 2023 01:52:04 -0500 Subject: [PATCH] add thread post styling --- style.css | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/style.css b/style.css index 23880ac..d8facc9 100644 --- a/style.css +++ b/style.css @@ -1018,6 +1018,36 @@ body.forum table.board-display .thread-status { left: 4px; } +body.forum.thread table.post-display { + background: var(--post); + border: var(--post-border); + margin: 8px 0px; +} + +body.forum.thread table.post-display td.author-cell { + background: var(--post-author); + border: var(--post-author-border); + vertical-align: top; + text-align: center; +} + +body.forum.thread table.post-display tr.button-row, +body.forum.thread table.post-display tr.info-row { + background: var(--post-bottombar); + font-family: var(--primary-font); + color: var(--subtitle); +} + +body.forum.thread table.post-display td { padding: 4px; } + +body.forum.thread table.post-display tr td:nth-of-type(3) { + text-align: right; +} + +body.forum.thread table.post-display tr.button-row td:nth-of-type(2) a { + padding: 8px; +} +