From ead8fcd41abbf95d983db76bef4b45ad3f6620f5 Mon Sep 17 00:00:00 2001 From: Andras Bacsai <5845193+andrasbacsai@users.noreply.github.com> Date: Sun, 16 Aug 2026 08:29:31 +0200 Subject: [PATCH] fix(deployment): restore deployment log download actions (#11306) --- resources/css/app.css | 1 - tests/Feature/DeploymentLogsLayoutTest.php | 7 +++++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/resources/css/app.css b/resources/css/app.css index 0d80bf0b4..62f718b79 100644 --- a/resources/css/app.css +++ b/resources/css/app.css @@ -3119,7 +3119,6 @@ html[data-theme="custom"] .logs-viewer-timestamp { overscroll-behavior-x: contain; scrollbar-width: none; -webkit-overflow-scrolling: touch; - isolation: isolate; } .logs-viewer-actions::-webkit-scrollbar { diff --git a/tests/Feature/DeploymentLogsLayoutTest.php b/tests/Feature/DeploymentLogsLayoutTest.php index aa827f173..dc0b92100 100644 --- a/tests/Feature/DeploymentLogsLayoutTest.php +++ b/tests/Feature/DeploymentLogsLayoutTest.php @@ -136,6 +136,13 @@ it('uses a mobile-friendly stacked logs toolbar markup', function () { ->toContain('flex-direction: column') ->toContain('@media (min-width: 640px)'); + $actionsCss = str($appCss) + ->after('.logs-viewer-actions {') + ->before('}') + ->toString(); + + expect($actionsCss)->not->toContain('isolation: isolate'); + $primaryGroup = str($deploymentView) ->after('class="logs-viewer-primary"') ->before('class="logs-viewer-end"')