mirror of
https://github.com/discourse/discourse.git
synced 2025-02-08 12:24:55 +00:00
Merge pull request #2509 from awesomerobot/master
truncating long names in the @ autocompleter
This commit is contained in:
commit
6012d98983
@ -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…
x
Reference in New Issue
Block a user