Formatting fixes and adding pointer behavior to title-row

This commit is contained in:
Wirlaburla 2023-06-08 21:52:10 -05:00
parent ef5d22f937
commit 7818dfb920

View File

@ -983,6 +983,14 @@ body.forum .page-container .board-display td {
padding: 4px;
}
body.forum .page-container .board-display tr.title-row {
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
cursor: pointer;
}
body.forum .page-container .board-display tr:not(.title-row) {
background: var(--forum-content);
border: var(--forum-content-border);