Merge pull request #2235 from betagouv/LIFE-CRITICAL-FIX-MERGE-ASAP

form: make the sample asterisk also red
This commit is contained in:
gregoirenovel 2018-07-09 18:41:14 +02:00 committed by GitHub
commit 310aada03a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 15 additions and 11 deletions

View file

@ -12,15 +12,15 @@
color: $grey;
}
.mandatory {
color: $dark-red;
}
label {
margin-bottom: $default-padding;
display: block;
font-weight: bold;
.mandatory {
color: $dark-red;
}
.notice {
@include notice-text-style;
display: block;

View file

@ -1,19 +1,23 @@
.container
= render partial: "shared/dossiers/submit_is_over", locals: { dossier: dossier }
- if notice_url(dossier.procedure).present?
%p
Pour vous aider à remplir votre dossier, vous pouvez consulter
= link_to 'le guide de cette démarche', notice_url(dossier.procedure), { target: '_blank' }
%p.thanks Les champs avec une astérisque (*) sont obligatoires.
- if apercu
- form_options = { url: '', method: :get, html: { class: 'form', multipart: true } }
- else
- form_options = { html: { class: 'form', multipart: true, novalidate: dossier.brouillon? } }
= form_for dossier, form_options do |f|
- if notice_url(dossier.procedure).present?
%p
Pour vous aider à remplir votre dossier, vous pouvez consulter
= link_to 'le guide de cette démarche', notice_url(dossier.procedure), { target: '_blank' }
%p.thanks
Les champs avec une astérisque (
%span.mandatory> *
) sont obligatoires.
= f.fields_for :champs, dossier.champs do |champ_form|
- champ = champ_form.object
= render partial: "shared/dossiers/editable_champs/editable_champ",