From b34d35b5f291cfe034a5afea9ea5f96e61cd370b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Markus=20G=C3=BCnther?= Date: Tue, 30 Jan 2024 08:49:48 +0100 Subject: [PATCH] BUGFIX: Add ellipsis to nodeInfoView content (#3700) The NodeTypeName in the info panel was getting cut off, so I implemented a solution to enhance the display. Now, an ellipsis is added to prevent overflow within the container, and the full NodeType name is accessible through a tooltip that appears when hovered over. Fixes: #3637 --- packages/neos-ui-views/src/NodeInfoView/style.css | 3 +++ 1 file changed, 3 insertions(+) diff --git a/packages/neos-ui-views/src/NodeInfoView/style.css b/packages/neos-ui-views/src/NodeInfoView/style.css index f6a6f1d5e5..a2d743f2a2 100644 --- a/packages/neos-ui-views/src/NodeInfoView/style.css +++ b/packages/neos-ui-views/src/NodeInfoView/style.css @@ -29,5 +29,8 @@ &__content { font-size: 13px; color: var(--colors-ContrastBright); + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; } }