Skip to content
Merged

yes #135

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions changelog/2026/08-05-release-2026.8.3.md
Original file line number Diff line number Diff line change
@@ -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. | | |
20 changes: 20 additions & 0 deletions src/css/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}