Skip to content

Commit

Permalink
fix: fixed overflow of texts for components in utforming page (#14216)
Browse files Browse the repository at this point in the history
Co-authored-by: Jonas Dyrlie <[email protected]>
  • Loading branch information
JamalAlabdullah and Jondyr authored Dec 12, 2024
1 parent db0fbcd commit d660904
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,12 @@
width: 100%;
}

.button span {
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}

.button[aria-selected='true'] {
background-color: var(--studio-treeitem-selected-background-colour);
border-color: var(--studio-treeitem-vertical-line-colour-root);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@
.label {
flex: 1;
min-width: 0;
overflow: hidden;
text-overflow: ellipsis;
}

.root:hover .label {
Expand Down

0 comments on commit d660904

Please sign in to comment.