From d71a72a45df1b24aa30701ec061e3d1445744cc9 Mon Sep 17 00:00:00 2001 From: Andras Bacsai <5845193+andrasbacsai@users.noreply.github.com> Date: Tue, 8 Sep 2026 22:21:32 +0200 Subject: [PATCH] fix(applications): flatten mobile config nav and pin domain save Replace the collapsible mobile configuration menu with an always-visible responsive grid, stack the mobile heading, and swap the domain editor unsaved bar for a sticky Save footer with a scrollable form body. --- .../configuration-sidebar.blade.php | 94 +++++-------------- .../application/configuration.blade.php | 2 +- .../project/application/domains.blade.php | 71 +++++++------- .../project/application/heading.blade.php | 7 +- tests/Feature/ApplicationDomainsTest.php | 11 ++- .../ResourceHeadingUnifiedNavbarTest.php | 35 ++++--- .../ServiceDatabaseVerticalNavigationTest.php | 18 ++++ .../Browser/ApplicationConfigurationTest.php | 18 ++-- 8 files changed, 124 insertions(+), 132 deletions(-) diff --git a/resources/views/components/application/configuration-sidebar.blade.php b/resources/views/components/application/configuration-sidebar.blade.php index 369d498c9..9a1405aff 100644 --- a/resources/views/components/application/configuration-sidebar.blade.php +++ b/resources/views/components/application/configuration-sidebar.blade.php @@ -238,60 +238,28 @@ ]; @endphp -@php - $activeMenuLabel = collect($groupedMenuItems)->flatMap(fn ($items) => $items)->firstWhere('active', true)['label'] ?? 'Settings'; -@endphp