Skip to content

Commit

Permalink
fix(list-box): apply ellipsis overflow text styles (#2203)
Browse files Browse the repository at this point in the history
* fix(list-box): apply ellipsis overflow text styles

* fix(list-box): remove extra grid column rule
  • Loading branch information
emyarod authored and alisonjoseph committed Mar 26, 2019
1 parent 34ffcc6 commit b799ee7
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/components/list-box/_list-box.scss
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,7 @@ $list-box-menu-width: rem(300px);
.#{$prefix}--list-box__wrapper--inline {
display: inline-grid;
align-items: center;
grid-template: auto auto / auto auto auto;
grid-template: auto auto / auto auto;
grid-gap: rem(4px);

.#{$prefix}--label {
Expand Down Expand Up @@ -490,6 +490,9 @@ $list-box-menu-width: rem(300px);
cursor: pointer;
outline: none;
border-bottom: 1px solid $ui-04;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}

.#{$prefix}--list-box--inline .#{$prefix}--list-box__field {
Expand Down

0 comments on commit b799ee7

Please sign in to comment.