Skip to content

Commit

Permalink
Block Editor: Fix LinkControl text wrapping. (#20448)
Browse files Browse the repository at this point in the history
  • Loading branch information
epiqueras authored and jorgefilipecosta committed Mar 2, 2020
1 parent fef9da9 commit 6a87dbc
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion packages/block-editor/src/components/link-control/style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,8 @@ $block-editor-link-control-number-of-actions: 1;
.block-editor-link-control__search-item-header {
display: block;
margin-right: $grid-size-xlarge;
overflow: hidden;
white-space: nowrap;
}

.block-editor-link-control__search-item-icon {
Expand All @@ -144,10 +146,10 @@ $block-editor-link-control-number-of-actions: 1;

.block-editor-link-control__search-item-info,
.block-editor-link-control__search-item-title {
text-overflow: ellipsis;
max-width: 230px;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}

.block-editor-link-control__search-item-title {
Expand Down

0 comments on commit 6a87dbc

Please sign in to comment.