From: Dan Allen Date: Wed, 23 Dec 2020 21:36:52 +0000 (-0700) Subject: add support for nobreak and nowrap utility roles X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=ea34146d0b9cb534a17838ba8f59c4dbbe8d35b1;p=working%2Feg-antora.git add support for nobreak and nowrap utility roles --- diff --git a/src/css/doc.css b/src/css/doc.css index ef37ac5..1297ac5 100644 --- a/src/css/doc.css +++ b/src/css/doc.css @@ -802,3 +802,12 @@ font-weight: var(--body-font-weight-bold); line-height: calc(1 / 1.1); } + +.doc .nowrap { + white-space: nowrap; +} + +.doc .nobreak { + hyphens: none; + word-wrap: normal; +}