Skip to content

Commit ca28937

Browse files
Merge pull request #6984 from christianbeeznest/fixes-updates175
Session: minor, change style icon color in resume page
2 parents b8fa4e0 + 879c93b commit ca28937

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

public/main/template/default/session/resume_session.html.twig

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
{# Session overview card #}
1515
<div class="bg-white border border-gray-25 rounded-2xl shadow-sm p-6 md:p-7 mb-6 md:mb-8">
1616
<div class="flex items-center gap-2 mb-4">
17-
<i class="mdi mdi-information-outline text-info text-xl" aria-hidden="true"></i>
17+
<i class="mdi mdi-information-outline text-primary text-xl" aria-hidden="true"></i>
1818
<h3 class="text-gray-90 text-body-1 font-semibold">{{ 'Session overview'|trans }}</h3>
1919
</div>
2020

@@ -92,7 +92,7 @@
9292
<div class="p-4 rounded-xl bg-support-2 border border-gray-25">
9393
<dt class="text-gray-50 text-tiny uppercase tracking-wide">{{ 'Career'|trans }}</dt>
9494
<dd class="text-gray-90 text-body-2 mt-1">
95-
<a class="text-info hover:underline"
95+
<a class="text-primary hover:underline"
9696
href="{{ _p.web_main }}admin/career_dashboard.php?filter={{ session.promotion.career.id }}&submit=&_qf__filter_form=">
9797
{{ session.promotion.career.title }}
9898
</a>
@@ -101,7 +101,7 @@
101101
<div class="p-4 rounded-xl bg-support-2 border border-gray-25">
102102
<dt class="text-gray-50 text-tiny uppercase tracking-wide">{{ 'Promotion'|trans }}</dt>
103103
<dd class="text-gray-90 text-body-2 mt-1">
104-
<a class="text-info hover:underline"
104+
<a class="text-primary hover:underline"
105105
href="{{ _p.web_main }}admin/promotions.php?action=edit&id={{ session.promotion.id }}">
106106
{{ session.promotion.title }}
107107
</a>
@@ -160,7 +160,7 @@
160160
<div class="mt-6">
161161
<a class="inline-flex items-center gap-2 px-3 py-2 rounded-xl border border-gray-25 hover:shadow-sm hover:bg-gray-10 transition text-gray-90"
162162
href="{{ _p.web_main }}session/scheduled_announcement.php?session_id={{ session.id }}">
163-
<i class="mdi mdi-bullhorn text-info" aria-hidden="true"></i>
163+
<i class="mdi mdi-bullhorn text-primary" aria-hidden="true"></i>
164164
<span class="text-body-2">{{ 'Scheduled announcements'|trans }}</span>
165165
</a>
166166
</div>
@@ -170,7 +170,7 @@
170170
{# Course list #}
171171
<div class="bg-white border border-gray-25 rounded-2xl shadow-sm p-6 md:p-7 mb-6 md:mb-8">
172172
<div class="flex items-center gap-2 mb-3">
173-
<i class="mdi mdi-book-open-page-variant text-info text-xl" aria-hidden="true"></i>
173+
<i class="mdi mdi-book-open-page-variant text-primary text-xl" aria-hidden="true"></i>
174174
<span class="text-gray-90 font-semibold">{{ 'Course list'|trans }}</span>
175175
</div>
176176
<div class="overflow-x-auto">
@@ -184,7 +184,7 @@
184184
{% if user_list is not empty %}
185185
<div class="bg-white border border-gray-25 rounded-2xl shadow-sm p-6 md:p-7 mb-6 md:mb-8">
186186
<div class="flex items-center gap-2 mb-3">
187-
<i class="mdi mdi-account-multiple text-info text-xl" aria-hidden="true"></i>
187+
<i class="mdi mdi-account-multiple text-primary text-xl" aria-hidden="true"></i>
188188
<span class="text-gray-90 font-semibold">{{ 'User list'|trans }}</span>
189189
</div>
190190
<div class="overflow-x-auto">

0 commit comments

Comments
 (0)