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
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 7 additions and 1 deletions

View file

@ -3119,7 +3119,6 @@ .logs-viewer-actions {
overscroll-behavior-x: contain;
scrollbar-width: none;
-webkit-overflow-scrolling: touch;
isolation: isolate;
}
.logs-viewer-actions::-webkit-scrollbar {

View file

@ -136,6 +136,13 @@
->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"')