Skip to content

Commit 7cf8c17

Browse files
authored
Merge branch 'main' into SynchronizedMediaNote
2 parents 7f02268 + 240dfd9 commit 7cf8c17

38 files changed

+3678
-196
lines changed

11ty/CustomLiquid.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,7 @@ export class CustomLiquid extends Liquid {
243243
$("figcaption").each((i, el) => {
244244
const $el = $(el);
245245
if (!$el.find("p").length) $el.wrapInner("

"
);
246-
$el.prepend(`Figure ${i + 1}`);
246+
$el.find("p").first().prepend(`Figure ${i + 1}. `);
247247
});
248248

249249
// Remove spurious copy-pasted content in 2.5.3 that doesn't belong there

_includes/techniques/changelog/21.html

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
<ol>
2+
<li><time datetime="2025-04-22">2 Jun 2025time>: Added {{ "G226" | linkTechniques }}li>
3+
<li><time datetime="2025-04-22">22 Apr 2025time>: Added {{ "F112" | linkTechniques }}li>
4+
<li><time datetime="2025-04-22">22 Apr 2025time>: Removed F4 Failure of Success Criterion 2.2.2 due to using text-decoration:blink without a mechanism to stop it in less than five secondsli>
5+
<li><time datetime="2025-04-22">22 Apr 2025time>: Removed F47 Failure of Success Criterion 2.2.2 due to using the blink elementli>
6+
<li><time datetime="2025-03-07">7 Mar 2025time>: Added {{ "G224" | linkTechniques }}li>
7+
<li><time datetime="2025-03-07">7 Mar 2025time>: Added {{ "G225" | linkTechniques }}li>
28
<li><time datetime="2024-05-04">4 May 2024time>: Removed F87 Failure of Success Criterion 1.3.1 due to inserting non-decorative content by using :before and :after pseudo-elements and the 'content' property in CSSli>
3-
<li><time datetime="2020-07-15">15 July 2020time>: Removed Flash techniques.li>
9+
<li><time datetime="2020-07-15">15 July 2020time>: Removed Flash techniquesli>
410
<li><time datetime="2019-09-12">12 Sept 2019time>: Added {{ "F105" | linkTechniques }}li>
511
<li><time datetime="2019-09-12">12 Sept 2019time>: Added {{ "F106" | linkTechniques }}li>
612
<li><time datetime="2019-09-03">3 Sept 2019time>: Added {{ "F104" | linkTechniques }}li>

_includes/techniques/changelog/22.html

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
<ol>
2+
<li><time datetime="2025-04-22">2 Jun 2025time>: Added {{ "G226" | linkTechniques }}li>
3+
<li><time datetime="2025-04-22">22 Apr 2025time>: Added {{ "F112" | linkTechniques }}li>
4+
<li><time datetime="2025-04-22">22 Apr 2025time>: Removed F4 Failure of Success Criterion 2.2.2 due to using text-decoration:blink without a mechanism to stop it in less than five secondsli>
5+
<li><time datetime="2025-04-22">22 Apr 2025time>: Removed F47 Failure of Success Criterion 2.2.2 due to using the blink elementli>
6+
<li><time datetime="2025-03-07">7 Mar 2025time>: Added {{ "G224" | linkTechniques }}li>
7+
<li><time datetime="2025-03-07">7 Mar 2025time>: Added {{ "G225" | linkTechniques }}li>
28
<li><time datetime="2024-05-04">4 May 2024time>: Removed F87 Failure of Success Criterion 1.3.1 due to inserting non-decorative content by using :before and :after pseudo-elements and the 'content' property in CSSli>
3-
<li><time datetime="2020-07-15">15 July 2020time>: Removed Flash techniques.li>
9+
<li><time datetime="2020-07-15">15 July 2020time>: Removed Flash techniquesli>
410
<li><time datetime="2019-09-12">12 Sept 2019time>: Added {{ "F105" | linkTechniques }}li>
511
<li><time datetime="2019-09-12">12 Sept 2019time>: Added {{ "F106" | linkTechniques }}li>
612
<li><time datetime="2019-09-03">3 Sept 2019time>: Added {{ "F104" | linkTechniques }}li>
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
<p>
2-
The following are common mistakes that are considered failures of this Success Criterion by the WCAG Working Group.
2+
The following are common mistakes that are considered failures of this Success Criterion by the Accessibility Guidelines Working Group.
33
p>

_includes/understanding/intro/techniques.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<p>
22
Each numbered item in this section represents a technique or combination of techniques
3-
that the WCAG Working Group deems sufficient for meeting this Success Criterion.
3+
that the Accessibility Guidelines Working Group deems sufficient for meeting this Success Criterion.
44
A technique may go beyond the minimum requirement of the criterion. There may be other ways of meeting the criterion not covered by these techniques.
55
For information on using other techniques, see
66
<a href="understanding-techniques">Understanding Techniques for WCAG Success Criteriaa>,

css/base.css

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -430,6 +430,26 @@ margin-right:.8em;
430430
margin-left: 2em;
431431
}
432432

433+
/* overrides for restyled figures and captions */
434+
435+
figure {
436+
margin: 2em 0;
437+
padding-left: 1em;
438+
border-left: 2px solid var(--cloudy);
439+
}
440+
441+
figure img,
442+
figure video,
443+
figure svg {
444+
border: 1px solid var(--line-grey);
445+
}
446+
447+
figcaption {
448+
font-weight: initial;
449+
border-bottom: initial;
450+
font-size: 0.9rem;
451+
}
452+
433453
@media (max-width: 35em) {
434454
.nav-container {
435455
padding: 0;
@@ -438,7 +458,7 @@ margin-right:.8em;
438458
display: inline-block;
439459
width: calc(100% - 2em);
440460
}
441-
@supports (display:gred) {
461+
@supports (display:grid) {
442462
#site-header {
443463
padding-left: 0;
444464
}

0 commit comments

Comments
 (0)