fix(deployment): restore deployment log download actions (#11306)

This commit is contained in:
Andras Bacsai
2026-08-16 08:29:31 +02:00
committed by GitHub
parent 8e73149a06
commit ead8fcd41a
2 changed files with 7 additions and 1 deletions
-1
View File
@@ -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 {
@@ -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"')