FEATURE: holiday icon for suggestions (#278)
When user is on holiday, mark avatar with calendar icon. In this case, urgent topics can be assigned to an available team member.
This commit is contained in:
parent
7a04569c0a
commit
594dad6b83
|
@ -21,6 +21,7 @@
|
|||
{{#each assignSuggestions as |user|}}
|
||||
<a href {{action "assignUser" user.username }}>
|
||||
{{avatar user imageSize="small"}}
|
||||
{{decorate-username-selector user.username}}
|
||||
</a>
|
||||
{{/each}}
|
||||
</div>
|
||||
|
|
|
@ -89,6 +89,13 @@
|
|||
margin-right: 5px;
|
||||
}
|
||||
}
|
||||
|
||||
.on-holiday {
|
||||
position: absolute;
|
||||
margin-left: -18px;
|
||||
margin-top: 14px;
|
||||
color: var(--primary-medium);
|
||||
}
|
||||
}
|
||||
|
||||
.topic-list-item {
|
||||
|
|
Loading…
Reference in New Issue