This repository has been archived by the owner on Sep 5, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(chips): prevents unnecessary ellipsis in chips
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.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
robertmesserle
via email
Contributor
|
||
overflow: hidden; | ||
text-overflow: ellipsis; | ||
&:focus { | ||
|
When I try commenting it out, this line doesn't change anything? Is it even needed if it's 100%?