diff --git a/src/Bundle/ChillMainBundle/Resources/public/chill/scss/flex_table.scss b/src/Bundle/ChillMainBundle/Resources/public/chill/scss/flex_table.scss index aab584b63..a939b17f8 100644 --- a/src/Bundle/ChillMainBundle/Resources/public/chill/scss/flex_table.scss +++ b/src/Bundle/ChillMainBundle/Resources/public/chill/scss/flex_table.scss @@ -163,7 +163,7 @@ div.wrap-list { width: 75%; margin: auto 0 0 auto; - p.wl-item { + .wl-item { margin: 0.1em; padding: 0em; display: inline-block; diff --git a/src/Bundle/ChillPersonBundle/Resources/public/chill/scss/render_box.scss b/src/Bundle/ChillPersonBundle/Resources/public/chill/scss/render_box.scss index 041a70dd9..5a4a51de8 100644 --- a/src/Bundle/ChillPersonBundle/Resources/public/chill/scss/render_box.scss +++ b/src/Bundle/ChillPersonBundle/Resources/public/chill/scss/render_box.scss @@ -27,5 +27,15 @@ } } - +// specific chill badge for persons +span.badge-person { + padding: 0 0.5em !important; + background-color: $white; + border: 1px solid $chill-ll-gray; + border-bottom: 2px solid $chill-green; + border-radius: 6px; + a { + text-decoration: none; + } +} diff --git a/src/Bundle/ChillPersonBundle/Resources/views/AccompanyingPeriod/_list.html.twig b/src/Bundle/ChillPersonBundle/Resources/views/AccompanyingPeriod/_list.html.twig index 16234ea61..9eb115e6b 100644 --- a/src/Bundle/ChillPersonBundle/Resources/views/AccompanyingPeriod/_list.html.twig +++ b/src/Bundle/ChillPersonBundle/Resources/views/AccompanyingPeriod/_list.html.twig @@ -60,37 +60,38 @@
- {{ accompanying_period.requestorPerson.firstname ~ ' ' ~ accompanying_period.requestorPerson.lastname }} -
+ {{ accompanying_period.requestorPerson|chill_entity_render_string }} {% endif %} {% if accompanying_period.requestorThirdParty is not null %} -- {{ accompanying_period.requestorThirdParty.name }} -
+ {{ accompanying_period.requestorThirdParty|chill_entity_render_string }} {% endif %}