Skip to content

Commit

Permalink
Améliorer le rendu du tableau sur petit écran
Browse files Browse the repository at this point in the history
Améliore le tableau de liste sur des petits écrans d'ordinateur.
L'affichage est toujours mauvais quand la largeur est faible mais
améliore la situation dans la zone 1000px à 1400px de large.
  • Loading branch information
Anto59290 committed Nov 15, 2024
1 parent 8c431ad commit d28918e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions sv/static/sv/fiche_list.css
Original file line number Diff line number Diff line change
Expand Up @@ -83,3 +83,6 @@ body{
padding-bottom: 0.50rem !important;
background-image: none !important;
}
.fiches__list-link-no-wrap {
text-wrap: nowrap;
}
6 changes: 3 additions & 3 deletions sv/templates/sv/fiche_list.html
Original file line number Diff line number Diff line change
Expand Up @@ -53,12 +53,12 @@ <h2 class="fr-h3">Rechercher une fiche</h2>
{% for fiche in fiches %}
<tr class="fiches__list-row">
<td>
<a href="{{ fiche.get_absolute_url }}" class="fiches__list-link">
<a href="{{ fiche.get_absolute_url }}" class="fiches__list-link fiches__list-link-no-wrap">
{{ fiche.type }}
</a>
</td>
<td>
<a href="{{ fiche.get_absolute_url }}" class="fiches__list-link">
<a href="{{ fiche.get_absolute_url }}" class="fiches__list-link fiches__list-link-no-wrap">
{{ fiche.numero|default:"nc." }}
</a>
</td>
Expand All @@ -68,7 +68,7 @@ <h2 class="fr-h3">Rechercher une fiche</h2>
</a>
</td>
<td>
<a href="{{ fiche.get_absolute_url }}" class="fiches__list-link">
<a href="{{ fiche.get_absolute_url }}" class="fiches__list-link fiches__list-link-no-wrap">
{{ fiche.date_creation }}
</a>
</td>
Expand Down

0 comments on commit d28918e

Please sign in to comment.