Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

IBX-4674: Unnecessary wrap on text in checkbox on field - opened accordion #791

Merged
merged 1 commit into from
May 17, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,13 @@

{% block ezboolean_field_definition_edit %}
<div class="ezboolean-default-value{% if group_class is not empty %} {{ group_class }}{% endif %}">
{{- form_row(form.defaultValue, {'label_attr': {'class': 'checkbox-inline'}}) -}}
{{- form_row(form.defaultValue) -}}
</div>
{% endblock %}

{% block ezcountry_field_definition_edit %}
<div class="ezcountry-settings is-multiple{% if group_class is not empty %} {{ group_class }}{% endif %}">
{{- form_row(form.isMultiple, {'label_attr': {'class': 'checkbox-inline'}}) -}}
{{- form_row(form.isMultiple) -}}
</div>

<div class="ezcountry-default-value{% if group_class is not empty %} {{ group_class }}{% endif %}">
Expand All @@ -44,11 +44,11 @@

{% block ezdatetime_field_definition_edit %}
<div class="ezdatetime-settings use-seconds{% if group_class is not empty %} {{ group_class }}{% endif %}">
{{- form_row(form.useSeconds, {'label_attr': {'class': 'checkbox-inline'}}) -}}
{{- form_row(form.useSeconds) -}}
</div>

<div class="ezdatetime-settings default-type{% if group_class is not empty %} {{ group_class }}{% endif %}">
{{- form_row(form.defaultType, {'label_attr': {'class': 'radio-inline'}}) -}}
{{- form_row(form.defaultType) -}}
</div>

<div class="ezdatetime-settings date-interval{% if group_class is not empty %} {{ group_class }}{% endif %}">
Expand All @@ -58,7 +58,7 @@

{% block eztime_field_definition_edit %}
<div class="eztime-settings use-seconds{% if group_class is not empty %} {{ group_class }}{% endif %}">
{{- form_row(form.useSeconds, {'label_attr': {'class': 'checkbox-inline'}}) -}}
{{- form_row(form.useSeconds) -}}
</div>

<div class="eztime-settings default-type{% if group_class is not empty %} {{ group_class }}{% endif %}">
Expand Down Expand Up @@ -88,7 +88,7 @@
</div>

<div class="ezimage-validator is-alternative-text-required"{% if group_class is not empty %} {{ group_class }}{% endif %}>
{{ form_row(form.isAlternativeTextRequired, {'label_attr': {'class': 'checkbox-inline'}}) }}
{{ form_row(form.isAlternativeTextRequired) }}
</div>
{% endblock %}

Expand All @@ -110,7 +110,7 @@

{% block ezisbn_field_definition_edit %}
<div class="ezisbn-settings is-isbn13{% if group_class is not empty %} {{ group_class }}{% endif %}">
{{- form_row(form.isISBN13, {'label_attr': {'class': 'checkbox-inline'}}) -}}
{{- form_row(form.isISBN13) -}}
</div>

<div class="ezisbn-default-value{% if group_class is not empty %} {{ group_class }}{% endif %}">
Expand Down Expand Up @@ -168,7 +168,7 @@

{% block ezselection_field_definition_edit %}
<div class="ezselection-settings is-multiple{% if group_class is not empty %} {{ group_class }}{% endif %}">
{{- form_row(form.isMultiple, {'label_attr': {'class': 'checkbox-inline'}}) -}}
{{- form_row(form.isMultiple) -}}
</div>

<div class="ezselection-settings options{% if group_class is not empty %} {{ group_class }}{% endif %}">
Expand Down Expand Up @@ -237,19 +237,19 @@
{% block ezuser_field_definition_edit %}
<div class="ibexa-field ibexa-field--user ibexa-user">
<div class="ibexa-user__settings {% if group_class is not empty %} {{ group_class }}{% endif %}">
{{- form_row(form.requireAtLeastOneUpperCaseCharacter, {'label_attr': {'class': 'checkbox-inline'}}) -}}
{{- form_row(form.requireAtLeastOneUpperCaseCharacter) -}}
</div>

<div class="ibexa-user__settings {% if group_class is not empty %} {{ group_class }}{% endif %}">
{{- form_row(form.requireAtLeastOneLowerCaseCharacter, {'label_attr': {'class': 'checkbox-inline'}}) -}}
{{- form_row(form.requireAtLeastOneLowerCaseCharacter) -}}
</div>

<div class="ibexa-user__settings {% if group_class is not empty %} {{ group_class }}{% endif %}">
{{- form_row(form.requireAtLeastOneNumericCharacter, {'label_attr': {'class': 'checkbox-inline'}}) -}}
{{- form_row(form.requireAtLeastOneNumericCharacter) -}}
</div>

<div class="ibexa-user__settings {% if group_class is not empty %} {{ group_class }}{% endif %}">
{{- form_row(form.requireAtLeastOneNonAlphanumericCharacter, {'label_attr': {'class': 'checkbox-inline'}}) -}}
{{- form_row(form.requireAtLeastOneNonAlphanumericCharacter) -}}
</div>

<div class="ibexa-user__settings text-rows{% if group_class is not empty %} {{ group_class }}{% endif %}">
Expand All @@ -265,7 +265,7 @@
</div>

<div class="ibexa-user__settings {% if group_class is not empty %} {{ group_class }}{% endif %}">
{{- form_row(form.requireNewPassword, {'label_attr': {'class': 'checkbox-inline'}}) -}}
{{- form_row(form.requireNewPassword) -}}
</div>
</div>
{% endblock %}