Skip to content
This repository has been archived by the owner on Sep 5, 2024. It is now read-only.

Commit

Permalink
fix(chips): prevents unnecessary ellipsis in chips
Browse files Browse the repository at this point in the history
Closes #2688
  • Loading branch information
Robert Messerle committed Jul 24, 2015
1 parent 0667380 commit 7fed14e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/chips/chips.scss
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ $contact-chip-name-width: rem(12) !default;
padding-right:rem(0.4);
float: left;
white-space: nowrap;
max-width: calc(100% - 31px);
max-width: 100%;

This comment has been minimized.

Copy link
@ilanbiala

ilanbiala Jul 24, 2015

Contributor

When I try commenting it out, this line doesn't change anything? Is it even needed if it's 100%?

This comment has been minimized.

Copy link
@robertmesserle

robertmesserle via email Jul 24, 2015

Contributor
overflow: hidden;
text-overflow: ellipsis;
&:focus {
Expand Down

0 comments on commit 7fed14e

Please sign in to comment.