fix: replace invalid bi-chat* icons with valid ones (#3716)

This commit is contained in:
Jennifer Richards 2022-03-21 16:10:56 -03:00 committed by GitHub
parent adc6331727
commit 6ee123d29b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 8 additions and 8 deletions

View file

@ -128,10 +128,10 @@
<i class="bi bi-envelope float-end"
title="Email requested to be sent for earlier discuss"></i>
{% elif p.any_email_sent == False %}
<i class="bi bi-chat-o float-end"
<i class="bi bi-chat float-end"
title="No email send requests for this discuss"></i>
{% else %}
<i class="bi bi-chat-o float-end"
<i class="bi bi-chat float-end"
title="No email send requests for this discuss"></i>
{% endif %}
</div>
@ -208,7 +208,7 @@
<i class="bi bi-envelope float-end"
title="Email requested to be sent for earlier ballot position"></i>
{% elif p.any_email_sent == False %}
<i class="bi bi-chat-o float-end"
<i class="bi bi-chat float-end"
title="No email send requests for this ballot position"></i>
{% else %}
<div class="float-end small italic"

View file

@ -1101,14 +1101,14 @@
<a class="btn btn-primary btn-sm review-wish-add-remove-doc ajax {% if not doc.has_review_wish %}hide{% endif %}"
href="{% url "ietf.doc.views_review.review_wishes_remove" name=doc.name %}?next={{ request.get_full_path|urlencode }}"
title="Remove from your review wishes for all teams">
<i class="bi bi-chats">
<i class="bi bi-chat-left-heart-fill">
</i>
Remove review wishes
</a>
<a class="btn btn-primary btn-sm review-wish-add-remove-doc {% if user.review_teams|length_is:"1" %}ajax {% endif %}{% if doc.has_review_wish %}hide{% endif %}"
href="{% url "ietf.doc.views_review.review_wish_add" name=doc.name %}?next={{ request.get_full_path|urlencode }}"
title="Add to your review wishes">
<i class="bi bi-chats">
<i class="bi bi-chat-left-heart">
</i>
Add review wish
</a>

View file

@ -29,12 +29,12 @@
<a class="review-wish-add-remove-doc ajax {% if not doc.has_review_wish %}visually-hidden{% endif %}"
href="{% url "ietf.doc.views_review.review_wishes_remove" name=doc.name %}?next={{ request.get_full_path|urlencode }}"
title="Remove from your review wishes for all teams">
<i class="bi bi-chats"></i>
<i class="bi bi-chat-left-heart-fill"></i>
</a>
<a class="review-wish-add-remove-doc {% if user.review_teams|length_is:"1" %}ajax {% endif %} {% if doc.has_review_wish %}visually-hidden{% endif %}"
href="{% url "ietf.doc.views_review.review_wish_add" name=doc.name %}?next={{ request.get_full_path|urlencode }}"
title="Add to your review wishes">
<i class="bi bi-chats-o"></i>
<i class="bi bi-chat-left-heart"></i>
</a>
<br>
{% endif %}

View file

@ -12,7 +12,7 @@
<div>
<span class="requested-duration">{{ session.requested_duration_in_hours|floatformat }}h</span>
{% if session.attendees != None %}<span class="attendees">&middot; {{ session.attendees }}</span>{% endif %}
{% if session.comments %}<span class="comments"><i class="bi bi-chat-o"></i></span>{% endif %}
{% if session.comments %}<span class="comments"><i class="bi bi-chat"></i></span>{% endif %}
{% if session.constrained_sessions %}
<span class="constraints">
{% for label, sessions in session.constrained_sessions %}