fix(n8n Form Node): Make customizing form custom styles possible on mobile screens and on form end redirect (#17060)

This commit is contained in:
Jaakko Husso
2025-07-08 12:02:42 +03:00
committed by GitHub
parent 779f2e6304
commit 878026aff6
2 changed files with 3 additions and 4 deletions

View File

@@ -400,7 +400,7 @@
@media only screen and (max-width: 500px) { @media only screen and (max-width: 500px) {
body { body {
background-color: #ffffff; background-color: var(--color-background);
} }
hr { hr {
display: block; display: block;
@@ -409,14 +409,13 @@
width: 95%; width: 95%;
min-height: 100vh; min-height: 100vh;
padding: 24px; padding: 24px;
background-color: #ffffff;
border: 0px solid var(--color-input-border); border: 0px solid var(--color-input-border);
border-radius: 0px; border-radius: 0px;
box-shadow: 0px 0px 0px 0px #ffffff; box-shadow: 0px 0px 0px 0px #ffffff;
} }
.card { .card {
padding: 0px; padding: 0px;
background-color: #ffffff; background-color: var(--color-card-bg);
border: 0px solid var(--color-input-border); border: 0px solid var(--color-input-border);
border-radius: 0px; border-radius: 0px;
box-shadow: 0px 0px 0px 0px #ffffff; box-shadow: 0px 0px 0px 0px #ffffff;

View File

@@ -253,7 +253,7 @@ const completionProperties = updateDisplayOptions(
], ],
displayOptions: { displayOptions: {
show: { show: {
respondWith: ['text', 'returnBinary'], respondWith: ['text', 'returnBinary', 'redirect'],
}, },
}, },
}, },