This is an automated email from the ASF dual-hosted git repository. claudio4j pushed a commit to branch claudio4j-patch-2 in repository https://gitbox.apache.org/repos/asf/camel-website.git
commit a0d5c8b5476311cf02b42b1f4248453035dfdc4c Author: Claudio Miranda <[email protected]> AuthorDate: Thu Mar 26 09:04:37 2026 -0300 CAMEL-22409: zwsp invisible character breaks property at runtime CAMEL-22409 --- antora-ui-camel/src/css/doc.css | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/antora-ui-camel/src/css/doc.css b/antora-ui-camel/src/css/doc.css index 04ddf18a..f7e1d923 100644 --- a/antora-ui-camel/src/css/doc.css +++ b/antora-ui-camel/src/css/doc.css @@ -175,6 +175,12 @@ word-break: normal; } +/* breaks long property names */ +.doc table.tableblock tbody tr td:first-child { + width: 25%; + overflow-wrap: anywhere; +} + .doc a:hover { color: var(--link_hover-font-color); }
