mirror of https://github.com/zulip/zulip.git
compose: Remove presence circles for wildcard users.
This commit removes presence circles for special users like all, stream, and everyone. This was discussed at #design>Presence circles in typeahead, and this was justified as presence circles for these special users will always be grey circle and do not convey any information about presence of anyone.
This commit is contained in:
parent
cd0d3347ab
commit
629aeced16
|
@ -80,7 +80,6 @@ export function render_person(person) {
|
|||
if (person.special_item_text) {
|
||||
return render_typeahead_item({
|
||||
primary: person.special_item_text,
|
||||
user_circle_class,
|
||||
is_person: true,
|
||||
});
|
||||
}
|
||||
|
|
|
@ -2053,7 +2053,8 @@ div.focused_table {
|
|||
font-size: 19px;
|
||||
text-align: center;
|
||||
|
||||
&.fa-group {
|
||||
&.fa-group,
|
||||
&.fa-bullhorn {
|
||||
margin-left: 9px;
|
||||
top: 3px;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue