diff --git a/app/assets/stylesheets/new_design/accompagnateur.scss b/app/assets/stylesheets/new_design/accompagnateur.scss index b4c3a610f..f8696c893 100644 --- a/app/assets/stylesheets/new_design/accompagnateur.scss +++ b/app/assets/stylesheets/new_design/accompagnateur.scss @@ -1,13 +1,19 @@ @import "colors"; @import "constants"; -.accompagnateur-title { +.page-title { font-size: 30px; font-weight: normal; margin-top: 3 * $default-spacer; margin-bottom: 3 * $default-spacer; } +.tab-title { + font-size: 18px; + font-weight: bold; + margin-bottom: $default-padding; +} + .accompagnateur-header { background-color: $light-grey; padding-top: $default-padding; diff --git a/app/assets/stylesheets/new_design/avis.scss b/app/assets/stylesheets/new_design/avis.scss index 2686d8311..5ad45e97e 100644 --- a/app/assets/stylesheets/new_design/avis.scss +++ b/app/assets/stylesheets/new_design/avis.scss @@ -3,12 +3,6 @@ @import "constants"; .give-avis { - h1 { - font-size: 18px; - font-weight: bold; - margin-bottom: $default-padding; - } - .lock { margin-right: $default-spacer; } @@ -39,12 +33,6 @@ } .ask-avis { - h1 { - font-size: 18px; - font-weight: bold; - margin-bottom: $default-padding; - } - .avis-notice { font-size: 14px; color: $grey; @@ -74,22 +62,16 @@ } .list-avis { - .title { - font-size: 18px; - font-weight: bold; - margin-bottom: $default-padding; - - .count { - display: inline-block; - width: 20px; - height: 20px; - border-radius: 10px; - border: 1px solid $grey; - text-align: center; - font-size: 12px; - font-weight: normal; - margin-left: 8px; - } + .count { + display: inline-block; + width: 20px; + height: 20px; + border-radius: 10px; + border: 1px solid $grey; + text-align: center; + font-size: 12px; + font-weight: normal; + margin-left: 8px; } .one-avis { diff --git a/app/views/new_gestionnaire/avis/_avis_list.html.haml b/app/views/new_gestionnaire/avis/_avis_list.html.haml index 8828f315e..03966b8e6 100644 --- a/app/views/new_gestionnaire/avis/_avis_list.html.haml +++ b/app/views/new_gestionnaire/avis/_avis_list.html.haml @@ -1,6 +1,6 @@ - if avis.present? %section.list-avis - %h1.title + %h1.tab-title Avis des invités %span.count= avis.count diff --git a/app/views/new_gestionnaire/avis/index.html.haml b/app/views/new_gestionnaire/avis/index.html.haml index 640107d2e..1c18ef3d5 100644 --- a/app/views/new_gestionnaire/avis/index.html.haml +++ b/app/views/new_gestionnaire/avis/index.html.haml @@ -5,7 +5,7 @@ .accompagnateur-header .container.flex .width-100 - %h1 Avis + %h1.tab-title Avis %ul.tabs %li{ class: (@statut == NewGestionnaire::AvisController::A_DONNER_STATUS) ? 'active' : nil }> = link_to(avis_index_path(statut: NewGestionnaire::AvisController::A_DONNER_STATUS)) do diff --git a/app/views/new_gestionnaire/avis/instruction.html.haml b/app/views/new_gestionnaire/avis/instruction.html.haml index 1dc5860d4..f9baa98e2 100644 --- a/app/views/new_gestionnaire/avis/instruction.html.haml +++ b/app/views/new_gestionnaire/avis/instruction.html.haml @@ -5,7 +5,7 @@ .container %section.give-avis - %h1 Donner votre avis + %h1.tab-title Donner votre avis %h2.claimant Demandeur : %span.email= @avis.claimant.email @@ -22,7 +22,7 @@ = f.submit 'Envoyer votre avis', class: 'button send' %section.ask-avis - %h1 Inviter une personne à donner son avis + %h1.tab-title Inviter une personne à donner son avis %p.avis-notice L'invité pourra consulter, donner un avis sur le dossier et contribuer au fil de messagerie, mais il ne pourra le modifier. = form_for Avis.new, url: avis_avis_path(@avis), html: { class: 'form' } do |f| diff --git a/app/views/new_gestionnaire/avis/show.html.haml b/app/views/new_gestionnaire/avis/show.html.haml index 486a2c843..ea4887be1 100644 --- a/app/views/new_gestionnaire/avis/show.html.haml +++ b/app/views/new_gestionnaire/avis/show.html.haml @@ -4,7 +4,7 @@ = render partial: 'header', locals: { avis: @avis, dossier: @dossier } .container - .accompagnateur-title Identité du demandeur + .tab-title Identité du demandeur .card - if @dossier.entreprise.present? = render partial: 'new_gestionnaire/dossiers/identite_entreprise', locals: { entreprise: @dossier.entreprise } @@ -12,18 +12,18 @@ - if @dossier.individual.present? = render partial: 'new_gestionnaire/dossiers/identite_individual', locals: { individual: @dossier.individual } - .accompagnateur-title Formulaire + .tab-title Formulaire - champs = @dossier.ordered_champs.decorate - if champs.any? .card = render partial: 'new_gestionnaire/dossiers/champs', locals: { champs: champs, dossier: @dossier, demande_seen_at: nil } - if @dossier.procedure.use_api_carto - .accompagnateur-title Cartographie + .tab-title Cartographie .card = render partial: 'new_gestionnaire/dossiers/map', locals: { dossier: @dossier } - if @dossier.procedure.cerfa_flag? || @dossier.types_de_piece_justificative.any? - .accompagnateur-title Pièces jointes + .tab-title Pièces jointes .card = render partial: "new_gestionnaire/dossiers/pieces_jointes", locals: { dossier: @dossier, demande_seen_at: nil } diff --git a/app/views/new_gestionnaire/dossiers/_personnes_impliquees_block.html.haml b/app/views/new_gestionnaire/dossiers/_personnes_impliquees_block.html.haml index 82165f283..4a4d55316 100644 --- a/app/views/new_gestionnaire/dossiers/_personnes_impliquees_block.html.haml +++ b/app/views/new_gestionnaire/dossiers/_personnes_impliquees_block.html.haml @@ -1,4 +1,4 @@ -.accompagnateur-title= title +.tab-title= title - if emails_collection.present? %ul diff --git a/app/views/new_gestionnaire/dossiers/annotations_privees.html.haml b/app/views/new_gestionnaire/dossiers/annotations_privees.html.haml index 5fc446f23..fc181f4be 100644 --- a/app/views/new_gestionnaire/dossiers/annotations_privees.html.haml +++ b/app/views/new_gestionnaire/dossiers/annotations_privees.html.haml @@ -5,7 +5,7 @@ #dossier-annotations-privees.container - if @dossier.ordered_champs_private.present? %section - %h1.private-annotations Annotations privées + %h1.tab-title Annotations privées .card.featured = form_for @dossier, url: annotations_dossier_path(@dossier.procedure, @dossier), html: { class: 'form' } do |f| = f.fields_for :champs_private, f.object.ordered_champs_private do |champ_form| diff --git a/app/views/new_gestionnaire/dossiers/avis.html.haml b/app/views/new_gestionnaire/dossiers/avis.html.haml index 0e9664df0..1e04ec443 100644 --- a/app/views/new_gestionnaire/dossiers/avis.html.haml +++ b/app/views/new_gestionnaire/dossiers/avis.html.haml @@ -4,7 +4,7 @@ .container %section.ask-avis - %h1 Inviter une personne à donner son avis + %h1.tab-title Inviter une personne à donner son avis %p.avis-notice L'invité pourra consulter, donner un avis sur le dossier et contribuer au fil de messagerie, mais il ne pourra le modifier. = form_for Avis.new, url: avis_dossier_path(@dossier.procedure, @dossier), html: { class: 'form' } do |f| diff --git a/app/views/new_gestionnaire/dossiers/show.html.haml b/app/views/new_gestionnaire/dossiers/show.html.haml index efae124ec..a13597223 100644 --- a/app/views/new_gestionnaire/dossiers/show.html.haml +++ b/app/views/new_gestionnaire/dossiers/show.html.haml @@ -3,7 +3,7 @@ = render partial: "header", locals: { dossier: @dossier } .container - .accompagnateur-title Identité du demandeur + .tab-title Identité du demandeur .card - if @dossier.entreprise.present? = render partial: "identite_entreprise", locals: { entreprise: @dossier.entreprise } @@ -11,18 +11,18 @@ - if @dossier.individual.present? = render partial: "identite_individual", locals: { individual: @dossier.individual } - .accompagnateur-title Formulaire + .tab-title Formulaire - champs = @dossier.ordered_champs.includes(:type_de_champ).decorate - if champs.any? .card = render partial: "champs", locals: { champs: champs, dossier: @dossier, demande_seen_at: @demande_seen_at } - if @dossier.procedure.use_api_carto - .accompagnateur-title Cartographie + .tab-title Cartographie .card = render partial: "map", locals: { dossier: @dossier } - if @dossier.procedure.cerfa_flag? || @dossier.types_de_piece_justificative.any? - .accompagnateur-title Pièces jointes + .tab-title Pièces jointes .card = render partial: "pieces_jointes", locals: { dossier: @dossier, demande_seen_at: @demande_seen_at } diff --git a/app/views/new_gestionnaire/procedures/index.html.haml b/app/views/new_gestionnaire/procedures/index.html.haml index b8a64c62b..084518d73 100644 --- a/app/views/new_gestionnaire/procedures/index.html.haml +++ b/app/views/new_gestionnaire/procedures/index.html.haml @@ -1,7 +1,7 @@ - content_for(:title, "Procédures") .container - %h1.accompagnateur-title Procédures + %h1.page-title Procédures %ul.procedure-list - @procedures.each do |p| diff --git a/app/views/new_gestionnaire/recherche/index.html.haml b/app/views/new_gestionnaire/recherche/index.html.haml index 3555ee3db..614258db0 100644 --- a/app/views/new_gestionnaire/recherche/index.html.haml +++ b/app/views/new_gestionnaire/recherche/index.html.haml @@ -1,7 +1,7 @@ - content_for(:title, "Recherche : #{@search_terms}") .container - .accompagnateur-title + .page-title Résultat de la recherche : = pluralize(@dossiers.count, "dossier trouvé", "dossiers trouvés")