feat(sessions): display and open Cloudflare URLs in session view

- Show Cloudflare URL in active session cards
- Change Open button to anchor tag linking directly to instance URL
- Add CSS styling for URL display in session cards
- Falls back to project navigation if no URL available
This commit is contained in:
Fusion
2026-05-20 14:38:33 +02:00
parent e7804c0f58
commit 4906ce0cd9
2 changed files with 42 additions and 8 deletions
+15
View File
@@ -2555,6 +2555,21 @@ a.nav-item,
font-size: 1rem;
}
.session-url {
margin: var(--space-1) 0;
font-size: 0.8rem;
word-break: break-all;
}
.session-url a {
color: var(--color-primary);
text-decoration: none;
}
.session-url a:hover {
text-decoration: underline;
}
.session-actions {
display: flex;
gap: var(--space-2);