mirror of
https://github.com/codeninjasllc/discourse.git
synced 2025-03-22 04:45:46 -04:00
truncating long names in the @ autocompleter
This commit is contained in:
parent
7909ca2a17
commit
f0f47fd045
1 changed files with 7 additions and 0 deletions
|
@ -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%);
|
||||
|
|
Loading…
Reference in a new issue