Améliore le CSS de la liste des morceaux
This commit is contained in:
parent
6330d2d428
commit
72fc04e45b
2 changed files with 6 additions and 5 deletions
|
@ -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;
|
||||
}
|
||||
|
|
|
@ -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 %}
|
||||
|
|
Loading…
Reference in a new issue