From a130f8e4c03e2b911d0dacc1d3e999c880e03678 Mon Sep 17 00:00:00 2001 From: Till JS Date: Thu, 9 Apr 2026 14:27:51 +0200 Subject: [PATCH] feat(mana/web): clickable page titles open route in new tab MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit PageShell gains an optional titleHref prop — when set, the header title renders as an with hover underline. Also wires this into the homepage app gallery (shared-ui/AppsPage): the grid card title is now an anchor to /{app.id}, while the rest of the card still opens the existing detail modal. Card converted from + {/each} @@ -377,6 +395,17 @@ color: #f3f4f6; } + .app-name-link { + display: inline-block; + text-decoration: none; + cursor: pointer; + transition: color 0.15s; + } + .app-name-link:hover { + color: var(--app-color); + text-decoration: underline; + } + .app-description { font-size: 0.75rem; line-height: 1.4;