Skip to content
Open
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
3 changes: 3 additions & 0 deletions builders/html/assets/css/base.css
Original file line number Diff line number Diff line change
Expand Up @@ -12742,3 +12742,6 @@ div.oembedall-lanyard .first {
}

/*# sourceMappingURL=base.css.map */
.word-wrap {
word-break: break-word;
}
2 changes: 1 addition & 1 deletion builders/html/templates/_object.cfm
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<cfloop array="#local.pg.getChildren()#" item="local.child">
<span class="tile">
<div class="tile-inner">
<div class="text-overflow">[[#local.child.getId()#]] #htmleditformat(local.child.getDescription())#</div>
<div class="word-wrap">[[#local.child.getId()#]] #htmleditformat(local.child.getDescription())#</div>
</div>
</span>
</cfloop>
Expand Down
2 changes: 1 addition & 1 deletion builders/html/templates/aToZIndex.cfm
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@

<span class="tile">
<div class="tile-inner">
<div class="text-overflow">
<div class="word-wrap">
<span translate="no">[[#htmleditformat(local.child.getId())#]]</span>
#htmleditformat( getMetaDescription(local.child, local.child.getBody()) )#
</div>
Expand Down
4 changes: 2 additions & 2 deletions builders/html/templates/implementationStatus.cfm
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<cfloop collection="#local.status.function#" index="local.i" item="local.child">
<span class="tile">
<div class="tile-inner">
<div class="text-overflow">[[#local.child.getId()#]] #htmleditformat(local.child.getDescription())#</div>
<div class="word-wrap">[[#local.child.getId()#]] #htmleditformat(local.child.getDescription())#</div>
</div>
</span>
</cfloop>
Expand All @@ -32,7 +32,7 @@
<cfloop collection="#local.status.tag#" index="local.i" item="local.child">
<span class="tile">
<div class="tile-inner">
<div class="text-overflow">[[#local.child.getId()#]] #htmleditformat(local.child.getDescription())#</div>
<div class="word-wrap">[[#local.child.getId()#]] #htmleditformat(local.child.getDescription())#</div>
</div>
</span>
</cfloop>
Expand Down