[fix](trx-frontend-http): redirect to login when navigating to protected tabs unauthenticated, right-align recorder table buttons

Show the auth gate instead of silently blocking navigation to non-main
tabs when not logged in. Also fix recorder file table layout so the file
column takes full width and action buttons are right-aligned.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Signed-off-by: Stan Grams <sjg@haxx.space>
This commit is contained in:
2026-04-04 12:54:11 +02:00
parent 7e15c0b5e4
commit 02ed6d918c
2 changed files with 11 additions and 1 deletions
@@ -1244,9 +1244,16 @@ small { color: var(--text-muted); }
text-transform: uppercase;
letter-spacing: 0.03em;
}
.recorder-table td:first-child,
.recorder-table th:first-child { width: 100%; }
.recorder-table td:nth-child(2),
.recorder-table th:nth-child(2) { white-space: nowrap; }
.recorder-table td:last-child,
.recorder-table th:last-child { text-align: right; white-space: nowrap; }
.recorder-table .rec-file-actions {
display: flex;
align-items: center;
justify-content: flex-end;
gap: 0.4rem;
}
.recorder-table .rec-file-btn {