Merge pull request #9382 from demarches-simplifiees/nicer_number
amélioration des affichages de numéro de dossiers et de procédure
This commit is contained in:
commit
bcb84d4070
4 changed files with 9 additions and 5 deletions
|
@ -102,6 +102,10 @@
|
|||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.width-max-content {
|
||||
width: max-content;
|
||||
}
|
||||
|
||||
// sizing
|
||||
.width-100 {
|
||||
width: 100%;
|
||||
|
|
|
@ -54,7 +54,7 @@
|
|||
%span.fr-badge= procedure.dossiers.state_not_brouillon.visible_by_administration.count
|
||||
|
||||
.text-right
|
||||
%p.fr-mb-0 N° #{procedure.id}
|
||||
%p.fr-mb-0.width-max-content N° #{number_with_html_delimiter(procedure.id)}
|
||||
- if procedure.close?
|
||||
%span.fr-badge.fr-badge--sm.fr-badge--warning
|
||||
= t('closed', scope: [:layouts, :breadcrumb])
|
||||
|
|
|
@ -37,9 +37,9 @@
|
|||
= dossier.invites.map(&:email).join(', ')
|
||||
|
||||
.text-right
|
||||
%p.fr-mb-0
|
||||
%p.fr-mb-0.width-max-content
|
||||
= t('views.users.dossiers.dossiers_list.n_dossier')
|
||||
= dossier.id
|
||||
= number_with_html_delimiter(dossier.id)
|
||||
|
||||
- if @statut == "dossiers-supprimes-recemment"
|
||||
%span.fr-badge.fr-badge--sm.fr-badge--warning
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue