Skip to content

Commit

Permalink
BUGFIX: Add ellipsis to nodeInfoView content (#3700)
Browse files Browse the repository at this point in the history
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
  • Loading branch information
markusguenther authored Jan 30, 2024
1 parent 50bf5ea commit b34d35b
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions packages/neos-ui-views/src/NodeInfoView/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,8 @@
&__content {
font-size: 13px;
color: var(--colors-ContrastBright);
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
}

0 comments on commit b34d35b

Please sign in to comment.