diff --git a/src/bundle/Resources/public/scss/_content-type-edit.scss b/src/bundle/Resources/public/scss/_content-type-edit.scss index 3050cc9ead..74c8500ae9 100644 --- a/src/bundle/Resources/public/scss/_content-type-edit.scss +++ b/src/bundle/Resources/public/scss/_content-type-edit.scss @@ -154,6 +154,16 @@ color: $ibexa-color-dark-400; margin-bottom: calculateRem(16px); } + + &__field-settings-group { + display: flex; + flex-wrap: nowrap; + justify-content: space-between; + } + + &__field-settings-field + &__field-settings-field { + margin-left: calculateRem(35px); + } } .ibexa-field-definitions-placeholder { diff --git a/src/bundle/Resources/views/themes/admin/content_type/field_types.html.twig b/src/bundle/Resources/views/themes/admin/content_type/field_types.html.twig index 7613da621f..a4a41492f7 100644 --- a/src/bundle/Resources/views/themes/admin/content_type/field_types.html.twig +++ b/src/bundle/Resources/views/themes/admin/content_type/field_types.html.twig @@ -67,16 +67,18 @@ {% endblock %} {% block ezfloat_field_definition_edit %} -
- {{- form_row(form.minValue) -}} -
+
+
+ {{- form_row(form.minValue) -}} +
-
- {{- form_row(form.maxValue) -}} -
+
+ {{- form_row(form.maxValue) -}} +
-
- {{- form_row(form.defaultValue) -}} +
+ {{- form_row(form.defaultValue) -}} +
{% endblock %} @@ -91,16 +93,18 @@ {% endblock %} {% block ezinteger_field_definition_edit %} -
- {{- form_row(form.minValue) -}} -
+
+
+ {{- form_row(form.minValue) -}} +
-
- {{- form_row(form.maxValue) -}} -
+
+ {{- form_row(form.maxValue) -}} +
-
- {{- form_row(form.defaultValue) -}} +
+ {{- form_row(form.defaultValue) -}} +
{% endblock %}