mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-21 03:42:16 +00:00
fix(n8n Form Node): Make customizing form custom styles possible on mobile screens and on form end redirect (#17060)
This commit is contained in:
@@ -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;
|
||||||
|
|||||||
@@ -253,7 +253,7 @@ const completionProperties = updateDisplayOptions(
|
|||||||
],
|
],
|
||||||
displayOptions: {
|
displayOptions: {
|
||||||
show: {
|
show: {
|
||||||
respondWith: ['text', 'returnBinary'],
|
respondWith: ['text', 'returnBinary', 'redirect'],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|||||||
Reference in New Issue
Block a user