Merge pull request #2509 from awesomerobot/master

truncating long names in the @ autocompleter
This commit is contained in:
Jeff Atwood 2014-07-04 18:35:19 -07:00
commit 6012d98983
1 changed files with 7 additions and 0 deletions

View File

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