{% set title %}{% trans "Background Colour" %}{% endset %}
{% set helpText %}{% trans "Use the colour picker to select the background colour" %}{% endset %}
{{ forms.colorPicker("backgroundColor", title, layout.backgroundColor, helpText) }}
{{ forms.hidden("backgroundImageId", backgroundId) }}
{% set title %}{% trans "Resolution" %}{% endset %}
{% set helpText %}{% trans "Change the resolution" %}{% endset %}
{{ forms.dropdown("resolutionId", "single", title, resolution.resolutionId, resolutions, "resolutionId", "resolution", helpText, "resolution-group") }}
{% set title %}{% trans "Layer" %}{% endset %}
{% set helpText %}{% trans "The layering order of the background image (z-index). Advanced use only." %}{% endset %}
{{ forms.input("backgroundzIndex", title, layout.backgroundzIndex, helpText) }}
{% set title %}{% trans "Automatically apply Transitions?" %}{% endset %}
{% set helpText %}{% trans "When enabled, the default Transition type and duration will be applied to all widgets on this Layout." %}{% endset %}
{{ forms.checkbox("autoApplyTransitions", title, layout.autoApplyTransitions, helpText) }}