mirror of
https://github.com/getgrav/grav-plugin-admin.git
synced 2025-11-01 10:56:08 +01:00
Revert "Move blueprint section headings and any section text within .form-section to simplify CSS selectors for custom admin styling (#2265)"
This reverts commit c11594dd79.
This commit is contained in:
@@ -3,18 +3,17 @@
|
|||||||
{% block field %}
|
{% block field %}
|
||||||
{% if field.security is empty or authorize(array(field.security)) %}
|
{% if field.security is empty or authorize(array(field.security)) %}
|
||||||
|
|
||||||
|
{% if field.title or field.underline %}
|
||||||
|
<h1 class="{{ field.classes }} {{ field.underline ?: 'no_underline' }}">{{ field.title|t }}</h1>
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
{% if field.text %}
|
||||||
|
<p>{{ field.text|t|markdown|raw }}</p>
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
{% embed 'forms/default/fields.html.twig' with {name: field.name, fields: field.fields} %}
|
{% embed 'forms/default/fields.html.twig' with {name: field.name, fields: field.fields} %}
|
||||||
{% block outer_markup_field_open %}
|
{% block outer_markup_field_open %}
|
||||||
<div class="form-section {{ field.field_classes }} {{ field.outer_classes }}">
|
<div class="form-section {{ field.field_classes }} {{ field.outer_classes }}">
|
||||||
|
|
||||||
{% if field.title or field.underline %}
|
|
||||||
<h1 class="{{ field.classes }} {{ field.underline ?: 'no_underline' }}">{{ field.title|t }}</h1>
|
|
||||||
{% endif %}
|
|
||||||
|
|
||||||
{% if field.text %}
|
|
||||||
<div class="section-text">{{ field.text|t|markdown|raw }}</div>
|
|
||||||
{% endif %}
|
|
||||||
|
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
{% block outer_markup_field_close %}
|
{% block outer_markup_field_close %}
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Reference in New Issue
Block a user