fix(editor): Render setup step dropdown above chat input (#31299)

This commit is contained in:
Raúl Gómez Morales 2026-05-29 10:28:46 +02:00 committed by GitHub
parent 408c3c0697
commit e07c8e6e6d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 2 additions and 18 deletions

View File

@ -913,14 +913,6 @@ function handleWorkflowFailures(report: WorkflowFailuresReport) {
display: flex;
min-width: 0;
overflow: hidden;
position: relative;
z-index: 0;
// Drop the stacking context while the workflow preview iframe NDV is
// fullscreen so its `z-index` can escape and paint above the sidebar.
&:has([data-test-id='workflow-preview-iframe'][data-ndv-open]) {
z-index: auto;
}
}
.chatArea {

View File

@ -131,14 +131,6 @@ onUnmounted(() => {
width: 100%;
min-width: 0;
overflow: hidden;
position: relative;
z-index: 0;
// Drop the stacking context while the workflow preview iframe NDV is
// fullscreen so its `z-index` can escape and paint above the sidebar.
&:has([data-test-id='workflow-preview-iframe'][data-ndv-open]) {
z-index: auto;
}
}
.sidebar {

View File

@ -182,7 +182,7 @@ async function handleCopyLink(tab: ArtifactTab) {
}
@keyframes scrollfade {
0% {
0.1% {
--left--fade: 0;
}
10%,
@ -193,7 +193,7 @@ async function handleCopyLink(tab: ArtifactTab) {
90% {
--right--fade: 3rem;
}
100% {
99.9% {
--right--fade: 0;
}
}