We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9c94c2c commit d5326c0Copy full SHA for d5326c0
2 files changed
static/css/v3/library-intro-card.css
@@ -73,7 +73,7 @@
73
}
74
75
.library-intro-card__authors:focus-visible {
76
- outline: 2px solid var(--color-text-primary);
+ outline: 2px solid var(--color-stroke-link-accent);
77
outline-offset: -2px;
78
79
templates/v3/includes/_library_intro_card.html
@@ -20,9 +20,11 @@
20
</div>
21
{% if authors %}
22
<div class="library-intro-card__authors"
23
+ {% if authors|length > 3 %}
24
tabindex="0"
25
role="region"
- aria-label="Contributors for {{ library_name }}">
26
+ aria-label="Contributors for {{ library_name }}"
27
+ {% endif %}>
28
{% for author in authors %}
29
{% if not forloop.first %}<hr class="card__hr">{% endif %}
30
<div class="library-intro-card__author">
0 commit comments