From 6eeb19607f201de3132241bbf826189801d15c36 Mon Sep 17 00:00:00 2001 From: John Livingston Date: Thu, 29 Aug 2024 17:20:12 +0200 Subject: [PATCH] Improved documentation accessibility (#118): * `white-space: normal` for the breadcrumbs, to avoid it to be truncated. --- support/documentation/layouts/partials/custom-header.html | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/support/documentation/layouts/partials/custom-header.html b/support/documentation/layouts/partials/custom-header.html index c0f5da4a..80fca48c 100644 --- a/support/documentation/layouts/partials/custom-header.html +++ b/support/documentation/layouts/partials/custom-header.html @@ -56,4 +56,11 @@ body a.highlight:focus { opacity: .85; } +/* Accessibility fix: To avoid breadcrumbs to be truncated when there is a zoom, + we cancel the `white-space: nowrap` of the relearn theme. +*/ +.breadcrumbs { + white-space: normal; +} + \ No newline at end of file