Merge branch 'dev'
This commit is contained in:
commit
38afb1f111
3 changed files with 6 additions and 4 deletions
|
@ -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 {
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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)))
|
||||
|
|
Loading…
Reference in a new issue