Skip to content

Commit

Permalink
EWPP-1779: Remove black color from h2 and h3 titles.
Browse files Browse the repository at this point in the history
  • Loading branch information
nagyad committed Dec 13, 2021
1 parent 45a73a4 commit 98d3fc4
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@
#}
{% if general is not empty or press is not empty %}
<div id="event-contacts">
<h2 class="ecl-u-type-heading-2 ecl-u-type-color-black ecl-u-mt-2xl ecl-u-mt-m-3xl ecl-u-mb-l">{{ 'Contacts'|t }}</h2>
<h2 class="ecl-u-type-heading-2 ecl-u-mt-2xl ecl-u-mt-m-3xl ecl-u-mb-l">{{ 'Contacts'|t }}</h2>
<div class="ecl-row">
{% if general is not empty %}
<div id="event-contacts-general" class="ecl-col-12 ecl-col-m-6">
<h3 class="ecl-u-type-heading-3 ecl-u-type-color-black ecl-u-mt-none ecl-u-mb-m ecl-u-mb-m-l">{{ 'General contact'|t }}</h3>
<h3 class="ecl-u-type-heading-3 ecl-u-mt-none ecl-u-mb-m ecl-u-mb-m-l">{{ 'General contact'|t }}</h3>
{% for contact in general %}
<div{{ not loop.last ? ' class="ecl-u-mb-xl ecl-u-pb-xl ecl-u-border-bottom ecl-u-border-color-grey-20"'}}>
{{ contact }}
Expand All @@ -22,7 +22,7 @@
{% endif %}
{% if press is not empty %}
<div id="event-contacts-press" class="ecl-col-12 ecl-col-m-6{{ general is not empty ? ' ecl-u-mt-l ecl-u-mt-m-none'}}">
<h3 class="ecl-u-type-heading-3 ecl-u-type-color-black ecl-u-mt-none ecl-u-mb-m ecl-u-mb-m-l">{{ 'Press contact'|t }}</h3>
<h3 class="ecl-u-type-heading-3 ecl-u-mt-none ecl-u-mb-m ecl-u-mb-m-l">{{ 'Press contact'|t }}</h3>
{% for contact in press %}
<div{{ not loop.last ? ' class="ecl-u-mb-xl ecl-u-pb-xl ecl-u-border-bottom ecl-u-border-color-grey-20"'}}>
{{ contact }}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
#}
{% if element.group_practical_information is not empty or element.oe_social_media_links is not empty %}
<div id="event-practical-information">
<h2 class="ecl-u-type-heading-2 ecl-u-type-color-black ecl-u-mt-2xl ecl-u-mt-m-3xl ecl-u-mb-l">{{ 'Practical information'|t }}</h2>
<h2 class="ecl-u-type-heading-2 ecl-u-mt-2xl ecl-u-mt-m-3xl ecl-u-mb-l">{{ 'Practical information'|t }}</h2>
<div class="ecl-row">
<div class="ecl-col-12 ecl-col-m-6">
{{ element.group_practical_information }}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
</div>
{% if element.oe_event_media|render is not empty %}
<div class="ecl-col-12">
<h2 class="ecl-u-type-heading-2 ecl-u-type-color-black ecl-u-mt-2xl ecl-u-mb-l">{{ 'Media'|t }}</h2>
<h2 class="ecl-u-type-heading-2 ecl-u-mt-2xl ecl-u-mb-l">{{ 'Media'|t }}</h2>
{{ element.oe_event_media }}
</div>
{% endif %}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

{% set _title = title|default('Coordinators'|t) %}

<h3 class="ecl-u-type-heading-3 ecl-u-type-color-black ecl-u-mt-none ecl-u-mb-m ecl-u-mb-m-l">
<h3 class="ecl-u-type-heading-3 ecl-u-mt-none ecl-u-mb-m ecl-u-mb-m-l">
{{ _title}}
</h3>

Expand Down

0 comments on commit 98d3fc4

Please sign in to comment.