From 126db055d614ddb1a6bb7f439bdb88318d07b878 Mon Sep 17 00:00:00 2001 From: Jakub Brzegowski Date: Thu, 16 Feb 2023 14:40:00 +0100 Subject: [PATCH] IBX-5051: Unable to edit custom tags with long values in page builder (#68) --- src/bundle/Resources/public/scss/_custom-tag-attributes.scss | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/bundle/Resources/public/scss/_custom-tag-attributes.scss b/src/bundle/Resources/public/scss/_custom-tag-attributes.scss index 6ca0929d..c1cc73fa 100644 --- a/src/bundle/Resources/public/scss/_custom-tag-attributes.scss +++ b/src/bundle/Resources/public/scss/_custom-tag-attributes.scss @@ -1,6 +1,7 @@ .ibexa-custom-tag-attributes { .ck.ck-reset_all & { min-width: calculateRem(400px); + max-width: calc(100vw - #{calculateRem(150px)}); &__header { display: flex; @@ -27,6 +28,7 @@ &__item-value { font-size: $ibexa-text-font-size; + white-space: normal; } } }