From 3334fd724a7b5cda1018b810d9f4feadf08e4fbb Mon Sep 17 00:00:00 2001 From: Alex Date: Thu, 26 Dec 2024 03:13:56 +0300 Subject: [PATCH] fix: common form editor header z-index (#38367) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## Description Fixes an issue where common form editor header appears to have z-index higher that the one of entity explorer. Fixes #38366 ## Automation /ok-to-test tags="@tag.IDE" ### :mag: Cypress test results > [!TIP] > 🟢 🟢 🟢 All cypress tests have passed! 🎉 🎉 🎉 > Workflow run: > Commit: 009a486ba59c0d390c50e0f77ac26f9b1d1923f3 > Cypress dashboard. > Tags: `@tag.IDE` > Spec: >
Wed, 25 Dec 2024 14:46:11 UTC ## Communication Should the DevRel and Marketing teams inform users about this change? - [ ] Yes - [ ] No ## Summary by CodeRabbit - **Style** - Updated the stacking order of the `FormHeader` component to enhance its visibility and layering within the user interface. --- .../PluginActionForm/components/CommonEditorForm/styles.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/client/src/PluginActionEditor/components/PluginActionForm/components/CommonEditorForm/styles.ts b/app/client/src/PluginActionEditor/components/PluginActionForm/components/CommonEditorForm/styles.ts index 477027266dc..3c72ed1e1bf 100644 --- a/app/client/src/PluginActionEditor/components/PluginActionForm/components/CommonEditorForm/styles.ts +++ b/app/client/src/PluginActionEditor/components/PluginActionForm/components/CommonEditorForm/styles.ts @@ -17,7 +17,7 @@ export const FormHeader = styled.div` top: calc(-1 * var(--ads-v2-spaces-4)); padding-top: var(--ads-v2-spaces-4); margin-top: calc(-1 * var(--ads-v2-spaces-4)); - z-index: var(--ads-v2-z-index-21); + z-index: var(--ads-v2-z-index-1); background-color: var(--ads-color-background); height: 100px; `;