adjustment badges into rounded-pill + red color for urgent

This commit is contained in:
Julie Lenaerts 2022-01-14 14:18:37 +01:00
parent 9e48a1db0a
commit 8d3ba314e0
2 changed files with 4 additions and 3 deletions

View File

@ -185,7 +185,8 @@ div[class*='activity-'] {
color: $chill-blue; color: $chill-blue;
} }
&.bg-urgent { &.bg-urgent {
background-color: $chill-orange; background-color: $chill-red;
color: white;
} }
&.bg-confidential { &.bg-confidential {
background-color: $chill-ll-gray; background-color: $chill-ll-gray;

View File

@ -82,10 +82,10 @@
<div class="wl-col title"> <div class="wl-col title">
<div> <div>
{% if acp.emergency %} {% if acp.emergency %}
<span class="badge bg-urgent">urgent</span> <span class="badge rounded-pill bg-urgent">urgent</span>
{% endif %} {% endif %}
{% if acp.confidential %} {% if acp.confidential %}
<span class="badge bg-confidential">confidentiel</span> <span class="badge rounded-pill bg-confidential">confidentiel</span>
{% endif %} {% endif %}
</div> </div>
{% if acp.step == 'DRAFT' %} {% if acp.step == 'DRAFT' %}