我们的 CSS 更改(到目前为止)以防对其他人有帮助:
// 移除灰色背景
.d-editor #form-template-form {
background-color: var(--secondary);
}
// 停止将字段拉伸至 100% 宽度
.form-template-field select, .form-template-field input {
width: auto;
}
.form-template-field textarea {
min-width: 650px;
width: auto;
}