feat: improvements to priority (#6981)

* fix: colors for urgent icon

* feat: trigger updated event on priority change

* fix: specs
This commit is contained in:
Shivam Mishra
2023-04-25 22:28:19 +05:30
committed by GitHub
parent 402428fb4d
commit d95283f5c2
5 changed files with 10 additions and 5 deletions

View File

@@ -48,15 +48,17 @@ export default {
<style scoped lang="scss">
.conversation-priority-mark {
align-items: center;
flex-shrink: 0;
background: var(--s-50);
border-radius: var(--border-radius-small);
color: var(--s-600);
display: inline-flex;
width: var(--space-snug);
height: var(--space-snug);
&.urgent {
background: var(--r-500);
color: var(--w-25);
background: var(--r-50);
color: var(--r-500);
}
}
</style>