これまでの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;
}