Definition lists in apps that use shared-resources CSS, such as the documentation app's article on serialization http://exist-db.org/exist/apps/doc/xquery.xml#serialization-10, cut off words. The fix is to override bootstrap's default handling of .dl-horizontal dt to change white-space: nowrap to white-space: normal. Perhaps this override should happen in the exist.css file. The screenshots below illustrate the current problem, how the appearance is fixed by changing white-space to normal, and a further fix to add indentation to multi-line entries with padding-left: 1em; text-indent: -1em.
I'd submit a pull request for this, but I'm not sure whether the change should go into .css or .less files.
Definition lists in apps that use shared-resources CSS, such as the documentation app's article on serialization http://exist-db.org/exist/apps/doc/xquery.xml#serialization-10, cut off words. The fix is to override bootstrap's default handling of
.dl-horizontal dt
to changewhite-space: nowrap
towhite-space: normal
. Perhaps this override should happen in the exist.css file. The screenshots below illustrate the current problem, how the appearance is fixed by changingwhite-space
tonormal
, and a further fix to add indentation to multi-line entries withpadding-left: 1em; text-indent: -1em
.I'd submit a pull request for this, but I'm not sure whether the change should go into .css or .less files.
Current behavior:
With
white-space: normal
With indentation added