fix(deployment): restore deployment log download actions (#11306)
This commit is contained in:
parent
8e73149a06
commit
ead8fcd41a
2 changed files with 7 additions and 1 deletions
|
|
@ -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 {
|
||||
|
|
|
|||
|
|
@ -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"')
|
||||
|
|
|
|||
Loading…
Reference in a new issue