Skip to content
Snippets Groups Projects
Commit 36df0cfe authored by Tomi Valentová's avatar Tomi Valentová
Browse files

popout point layout fix

parent 5fb39cbb
Branches
No related tags found
2 merge requests!1083Release,!1082Popout point layout fix
Pipeline #19171 passed
{% load wagtailcore_tags wagtailimages_tags shared_filters %} {% load wagtailcore_tags wagtailimages_tags shared_filters %}
{% if block %} {% if not is_outside_block %}
<div <div
class=" class="
{% if not page.root_page.content_is_full_width %} {% if not page.root_page.content_is_full_width %}
......
...@@ -53,7 +53,7 @@ ...@@ -53,7 +53,7 @@
</div> </div>
{% for point in category.points %} {% for point in category.points %}
{% include 'patterns/molecules/popouts/popout_point.html' with name=point.name text=point.content %} {% include 'patterns/molecules/popouts/popout_point.html' with name=point.name text=point.content with is_outside_block=True %}
{% endfor %} {% endfor %}
</li> </li>
{% endfor %} {% endfor %}
......
<ul class="flex flex-col"> <ul class="flex flex-col">
<li class="grow">{% include "styleguide2/includes/molecules/popouts/hoax_popout_point.html" %}</li> <li class="grow">{% include "styleguide2/includes/molecules/popouts/hoax_popout_point.html" with is_outside_block=True %}</li>
<li class="grow">{% include "styleguide2/includes/molecules/popouts/hoax_popout_point.html" %}</li> <li class="grow">{% include "styleguide2/includes/molecules/popouts/hoax_popout_point.html" with is_outside_block=True %}</li>
<li class="grow">{% include "styleguide2/includes/molecules/popouts/hoax_popout_point.html" %}</li> <li class="grow">{% include "styleguide2/includes/molecules/popouts/hoax_popout_point.html" with is_outside_block=True %}</li>
<li class="grow">{% include "styleguide2/includes/molecules/popouts/hoax_popout_point.html" %}</li> <li class="grow">{% include "styleguide2/includes/molecules/popouts/hoax_popout_point.html" with is_outside_block=True %}</li>
</ul> </ul>
...@@ -24,7 +24,7 @@ ...@@ -24,7 +24,7 @@
{% endif %} {% endif %}
{% for point in category.point_list %} {% for point in category.point_list %}
{% include 'styleguide2/includes/molecules/popouts/popout_point.html' with name=point.title content=point.content guarantor_page=point.guarantor %} {% include 'styleguide2/includes/molecules/popouts/popout_point.html' with name=point.title content=point.content guarantor_page=point.guarantor with is_outside_block=True %}
{% endfor %} {% endfor %}
</li> </li>
{% endfor %} {% endfor %}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment