From f3e00c2fbc0bd389bc8e358b3665622c43ad9ead Mon Sep 17 00:00:00 2001 From: leekelleher Date: Thu, 30 May 2024 10:53:05 +0100 Subject: [PATCH] Bugfix: Property description, sets `max-width` for child items e.g. typically for `` tags. --- .../core/property/property-layout/property-layout.element.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/Umbraco.Web.UI.Client/src/packages/core/property/property-layout/property-layout.element.ts b/src/Umbraco.Web.UI.Client/src/packages/core/property/property-layout/property-layout.element.ts index fac6cc9d24..cff1078368 100644 --- a/src/Umbraco.Web.UI.Client/src/packages/core/property/property-layout/property-layout.element.ts +++ b/src/Umbraco.Web.UI.Client/src/packages/core/property/property-layout/property-layout.element.ts @@ -130,6 +130,10 @@ export class UmbPropertyLayoutElement extends UmbLitElement { color: var(--uui-color-text-alt); } + #description * { + max-width: 100%; + } + #editorColumn { margin-top: var(--uui-size-space-3); }