Add reply-display

This commit is contained in:
Wirlaburla 2023-06-09 20:20:11 -05:00
parent ea6b1320d6
commit b1d2ced319

View File

@ -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 .author-cell { width: 168px; }
body.forum.thread table.post-display tr td:nth-of-type(3) { 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;
}