toulouse(-metropole): style list of links cell like list of forms (#39566)

This commit is contained in:
Frédéric Péters 2020-02-05 16:26:02 +01:00
parent 30d75d4a13
commit 5565e21d54
4 changed files with 26 additions and 0 deletions

View File

@ -361,6 +361,7 @@ section#section-particuliers {
position: static;
}
}
h1 + div.link-list-cell,
h1 + div.wcsformsofcategorycell {
margin-top: 70px;
}
@ -371,6 +372,7 @@ section#section-particuliers {
}
}
div.search-results,
div.link-list-cell,
div.wcsformsofcategorycell {
background: transparent;
margin-left: 0px;

View File

@ -337,6 +337,7 @@ section#section-particuliers {
position: static;
}
}
h1 + div.link-list-cell,
h1 + div.wcsformsofcategorycell {
margin-top: 70px;
}
@ -347,6 +348,7 @@ section#section-particuliers {
}
}
div.search-results,
div.link-list-cell,
div.wcsformsofcategorycell {
background: transparent;
margin-left: 0px;

View File

@ -0,0 +1,11 @@
{% load assets i18n static %}
{% block cell-content %}
<div class="wcs-forms-of-category-{{slug}}">
<h2><span><span>{{ title }}</span></span><i class="opener"></i></h2>
<ul>
{% for link in links %}
<li><a href="{{ link.url }}">{{ link.title }}</a></li>
{% endfor %}
</ul>
</div>
{% endblock %}

View File

@ -0,0 +1,11 @@
{% load assets i18n static %}
{% block cell-content %}
<div class="wcs-forms-of-category-{{slug}}">
<h2><span><span>{{ title }}</span></span><i class="opener"></i></h2>
<ul>
{% for link in links %}
<li><a href="{{ link.url }}">{{ link.title }}</a></li>
{% endfor %}
</ul>
</div>
{% endblock %}