From 0839aabd57fdaaeb83abd629ae8efa7dc0c8d29f Mon Sep 17 00:00:00 2001 From: Johannes Battjes Date: Thu, 6 Aug 2026 09:25:00 +0200 Subject: [PATCH] yes --- changelog/2026/08-05-release-2026.8.3.md | 8 ++++++++ src/css/custom.css | 20 ++++++++++++++++++++ 2 files changed, 28 insertions(+) create mode 100644 changelog/2026/08-05-release-2026.8.3.md diff --git a/changelog/2026/08-05-release-2026.8.3.md b/changelog/2026/08-05-release-2026.8.3.md new file mode 100644 index 0000000..57bc25c --- /dev/null +++ b/changelog/2026/08-05-release-2026.8.3.md @@ -0,0 +1,8 @@ +--- +slug: "2026.8.3" +title: "2026.8.3 AC standard 1.1.0" +--- + +| Component | Summary (english) | Relevance for consumers (English) | Relevance for end users (Dutch) | Relevance for system administration (Dutch) | +| --------- | ------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------- | ------------------------------------------- | +| AC | AC standard support updated from 1.0.0 to 1.1.0: added field `alleenIsGereedVoorPublicatie` | New optional boolean field `alleenIsGereedVoorPublicatie` (default: false) on the AC standard. If set to true, the associated application may only read documents for which `isGereedVoorPublicatie` is true. Not yet functional: DRC will be adjusted in an upcoming release to actually enforce this restriction. | | | diff --git a/src/css/custom.css b/src/css/custom.css index 1c5e640..c08db99 100644 --- a/src/css/custom.css +++ b/src/css/custom.css @@ -119,3 +119,23 @@ .footer__link-item[href*="youtube.com"]:after { display: none !important; } + +/** + * Make wide changelog/doc tables fit the viewport instead of showing a + * horizontal scrollbar. Infima sets table { display: block; overflow: auto } + * so it can scroll instead of overflowing the page; override that back to a + * real table layout, fixed to the container width, and let long cell + * content wrap instead. + */ +.markdown table { + display: table; + overflow: visible; + table-layout: fixed; + width: 100%; +} + +.markdown table th, +.markdown table td { + overflow-wrap: break-word; + word-wrap: break-word; +}