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 a08620919..2c3eefa2d 100644 --- a/src/Bundle/ChillPersonBundle/Resources/public/chill/scss/render_box.scss +++ b/src/Bundle/ChillPersonBundle/Resources/public/chill/scss/render_box.scss @@ -27,17 +27,25 @@ } } -// specific chill badge for persons -span.badge-person { +// specific chill badges +span.badge-person, +span.badge-thirdparty { display: inline-block; padding: 0 0.5em !important; background-color: $white; color: $dark; border: 1px solid $chill-ll-gray; - border-bottom: 2px solid $chill-green; + border-bottom-width: 2px; + border-bottom-style: solid; border-radius: 6px; a { text-decoration: none; } } - +span.badge-person { + border-bottom-color: $chill-green; +} +// todo: move in thirdparty +span.badge-thirdparty { + border-bottom-color: shade-color($chill-pink, 10%); +} diff --git a/src/Bundle/ChillPersonBundle/Resources/views/AccompanyingPeriod/_list.html.twig b/src/Bundle/ChillPersonBundle/Resources/views/AccompanyingPeriod/_list.html.twig index d3eac6b4b..bcb630cde 100644 --- a/src/Bundle/ChillPersonBundle/Resources/views/AccompanyingPeriod/_list.html.twig +++ b/src/Bundle/ChillPersonBundle/Resources/views/AccompanyingPeriod/_list.html.twig @@ -65,10 +65,10 @@

{{ 'Requestor'|trans }}

{% if accompanying_period.requestorPerson is not null %} - {{ accompanying_period.requestorPerson|chill_entity_render_string }} + {{ accompanying_period.requestorPerson|chill_entity_render_string }} {% endif %} {% if accompanying_period.requestorThirdParty is not null %} - {{ accompanying_period.requestorThirdParty|chill_entity_render_string }} + {{ accompanying_period.requestorThirdParty|chill_entity_render_string }} {% endif %}