Merge branch 'dev'

This commit is contained in:
Simon Lehericey 2017-10-25 17:19:05 +02:00
commit 38afb1f111
3 changed files with 6 additions and 4 deletions

View file

@ -30,6 +30,10 @@
width: 93px;
margin-right: 3 * $default-spacer;
flex-shrink: 0;
background-image: url("your/url/here");
background-size: contain;
background-repeat: no-repeat;
background-position: 95% 50%;
}
.procedure-title {

View file

@ -7,9 +7,7 @@
= link_to(procedure_path(p)) do
.flex
.procedure-logo
- if p.logo.present?
= image_tag p.logo, alt: "Logo de la procédure"
.procedure-logo{ style: p.logo.present? ? "background-image: url(#{p.logo.url})" : nil }
.procedure-details
%p.procedure-title

View file

@ -60,4 +60,4 @@
- unless champ.description.empty?
%div{ id: "description_champs_#{champ.id}", class: ('help-block' unless champ.type_champ == 'engagement') }
= sanitize(champ.description_with_links, attributes: %w(href target))
= simple_format(sanitize(champ.description_with_links, attributes: %w(href target)))