Merge pull request #8913 from demarches-simplifiees/fix-display-search-results

[bug display] Améliorer l'affichage des resultats de recherche
This commit is contained in:
github-merge-queue[bot] 2023-04-18 13:35:02 +00:00 committed by GitHub
commit 82f81cef21
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 15 additions and 13 deletions

View file

@ -22,7 +22,6 @@
.dossiers-table { .dossiers-table {
margin-top: $default-spacer; margin-top: $default-spacer;
margin-bottom: 3 * $default-spacer; margin-bottom: 3 * $default-spacer;
overflow: visible; // remove DSFR hidden overflow because of dropdown
} }
.procedure-actions { .procedure-actions {

View file

@ -1,6 +1,6 @@
- content_for(:title, "Recherche : #{@search_terms}") - content_for(:title, "Recherche : #{@search_terms}")
.container .fr-container
- if @dossier_not_in_instructor_group.present? - if @dossier_not_in_instructor_group.present?
.fr-alert.fr-alert--info.fr-alert--sm.fr-mt-3w .fr-alert.fr-alert--info.fr-alert--sm.fr-mt-3w
@ -12,6 +12,7 @@
- if @projected_dossiers.present? - if @projected_dossiers.present?
= paginate @paginated_ids = paginate @paginated_ids
.fr-table.fr-table--bordered
%table.table.dossiers-table.hoverable %table.table.dossiers-table.hoverable
%thead %thead
%tr %tr
@ -90,7 +91,9 @@
= t('views.instructeurs.dossiers.restore') = t('views.instructeurs.dossiers.restore')
- else - else
%td.action-col.follow-col= render partial: "instructeurs/procedures/dossier_actions", %td.action-col.follow-col
%ul.inline.fr-btns-group.fr-btns-group--sm.fr-btns-group--inline.fr-btns-group--icon-right
= render partial: "instructeurs/procedures/dossier_actions",
locals: { procedure_id: procedure_id, locals: { procedure_id: procedure_id,
dossier_id: p.dossier_id, dossier_id: p.dossier_id,
state: p.state, state: p.state,