Skip to content

Commit

Permalink
Fixed truncated suggestions via 'text-overflow: ellipsis;'
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonSteinberger committed Oct 29, 2015
1 parent e3488f7 commit cc6f371
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion auto-complete.css
Expand Up @@ -4,6 +4,6 @@
/* core styles should not be changed */
position: absolute; display: none; z-index: 9999; max-height: 254px; overflow: hidden; overflow-y: auto; box-sizing: border-box;
}
.autocomplete-suggestion { position: relative; padding: 0 .6em; line-height: 23px; white-space: nowrap; overflow: hidden; font-size: 1.02em; color: #333; }
.autocomplete-suggestion { position: relative; padding: 0 .6em; line-height: 23px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-size: 1.02em; color: #333; }
.autocomplete-suggestion b { font-weight: normal; color: #1f8dd6; }
.autocomplete-suggestion.selected { background: #f0f0f0; }

0 comments on commit cc6f371

Please sign in to comment.