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:
Krzysztof Kotlarek 2022-01-17 09:10:08 +11:00 committed by GitHub
parent 7a04569c0a
commit 594dad6b83
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 0 deletions

View File

@ -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>

View File

@ -89,6 +89,13 @@
margin-right: 5px;
}
}
.on-holiday {
position: absolute;
margin-left: -18px;
margin-top: 14px;
color: var(--primary-medium);
}
}
.topic-list-item {