Skip to content

Commit 195abd8

Browse files
committed
Changed where strikethrough element got placed for readability 🚚
Previously, the strikethrough line was for the H3 element. With the way that text was formatted, the eventual visible line was too low in the text. Made it look like there was something wrong with underlining links rather than that the text itself was being struck. This remedies that.
1 parent dc31caf commit 195abd8

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

‎_includes/presentation_timeline.html‎

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -72,9 +72,8 @@ <h2 class="cd-timeline-content-title">
7272
{% if event.groupId == 'key-open' %}
7373
{% elsif event.groupId == 'key-close' %}
7474
{% else %}
75-
{% if talk.status == "canceled" %}<s>{% endif %}
76-
<h3 class="h4 talk-title"><a href="{{ talk.url }}">{{ talk.title }}</a></h3>
77-
{% if talk.status == "canceled" %}</s>{% endif %}
75+
76+
<h3 class="h4 talk-title">{% if talk.status == "canceled" %}<s>{% endif %}<a href="{{ talk.url }}">{{ talk.title }}</a>{% if talk.status == "canceled" %}</s>{% endif %}</h3>
7877
{% endif %}
7978
</div>
8079
<div class="col-12 d-none d-md-flex flex-wrap">

0 commit comments

Comments
 (0)