truncating long names in the @ autocompleter

This commit is contained in:
Kris Aubuchon 2014-07-04 20:21:58 -04:00
parent 7909ca2a17
commit f0f47fd045
1 changed files with 7 additions and 0 deletions

View File

@ -15,9 +15,16 @@
display: block; display: block;
span.username { span.username {
color: darken($primary, 40%); color: darken($primary, 40%);
display: inline-block;
} }
span.name { span.name {
font-size: 11px; font-size: 11px;
display: inline-block;
width: 90px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
vertical-align: middle;
} }
&.selected { &.selected {
background-color: scale-color($tertiary, $lightness: 90%); background-color: scale-color($tertiary, $lightness: 90%);