Améliore le CSS de la liste des morceaux

This commit is contained in:
Martin Pépin 2016-06-24 11:13:56 +02:00
parent 6330d2d428
commit 72fc04e45b
2 changed files with 6 additions and 5 deletions

View file

@ -191,6 +191,7 @@ form p {
margin-bottom: 10px;
}
#chef-edit-div {
text-align: center;
h3.part {
padding-top: 15px;
border-top: 1px solid #f7e4e0;
}

View file

@ -12,21 +12,21 @@
{% endif %}
<h3>Partitions actives</h3>
<h3 class="part">Partitions actives</h3>
<ul class="filelist">
{% for part in active_partitions %}
{% include "partitions/liste_item.html" with part=part %}
{% endfor %}
</ul>
<h3>Partitions à venir</h3>
<h3 class="part">Partitions à venir</h3>
<ul class="filelist">
{% for part in incoming_partitions %}
{% include "partitions/liste_item.html" with part=part %}
{% endfor %}
</ul>
<h3>Archives</h3>
<h3 class="part">Archives</h3>
<ul class="filelist">
{% for part in old_partitions %}
{% include "partitions/liste_item.html" with part=part %}