Compare commits

...

2 Commits

Author SHA1 Message Date
7728100959 Fix button wonkyness for formbuttons on forum 2023-06-09 20:23:57 -05:00
b1d2ced319 Add reply-display 2023-06-09 20:20:11 -05:00

View File

@ -994,6 +994,8 @@ body.forum.index table.board-display tr.title-row {
cursor: pointer;
}
body.forum.index table.board-display tr.title-row .button { vertical-align: top; }
body.forum table.board-display tr:not(.title-row) {
background: var(--forum-content);
border: var(--forum-content-border);
@ -1067,6 +1069,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;
}