Compare commits

..

2 Commits

Author SHA1 Message Date
ad31cf8772 add thread post styling 2023-06-09 01:52:04 -05:00
b676dbe36c fix thread-status some more 2023-06-08 22:34:10 -05:00

View File

@ -1014,10 +1014,40 @@ body.forum table.board-display .thread-status {
text-align: right;
position: relative;
height: 0px;
top: -12px;
top: -16px;
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;
}