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

@ -973,19 +973,27 @@ body.library .lib.tiny > a {
/* == FORUM */
body.forum .page-container .board-display {
background: var(--forum-header);
border: var(--forum-header-border);
font-family: var(--primary-font);
background: var(--forum-header);
border: var(--forum-header-border);
font-family: var(--primary-font);
}
body.forum .page-container .board-display th,
body.forum .page-container .board-display td {
padding: 4px;
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);
background: var(--forum-content);
border: var(--forum-content-border);
}
body.forum .page-container .board-display.collapsed tr:not(.title-row) {