From daa01795b14a20ff897051997022eea0dfba201e Mon Sep 17 00:00:00 2001 From: Wirlaburla Date: Fri, 9 Jun 2023 21:30:45 -0500 Subject: [PATCH] Add sticky positioning on thread board-display --- style.css | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/style.css b/style.css index 3ea2209..a66599c 100644 --- a/style.css +++ b/style.css @@ -1029,6 +1029,10 @@ body.forum table.board-display tr th:nth-of-type(2) { text-align: left; } +body.forum.thread table.board-display { + position: sticky; +} + body.forum.thread table.post-display { background: var(--post); border: var(--post-border); @@ -1109,12 +1113,20 @@ body.forum.thread table.reply-display tr.title-row th:nth-of-type(2) button { } @media only screen and (orientation: landscape) { + body.forum.thread table.board-display { + top: -24px; + } + body.forum.thread table.post-display tr.author-row { display: none; } } @media only screen and (orientation: portrait) { + body.forum.thread table.board-display { + top: 40px; + } + body.forum.thread table.post-display td.author-cell { display: none; }