mirror of
https://github.com/zulip/zulip.git
synced 2025-11-02 13:03:29 +00:00
This style is currently only used for search suggestions. Soon, styling for those suggestions will become more specific, and so for now we'll keep those styles in search.css to be more clear about what the new styles affect. If we want to repeat something like this in the future somewhere else in the app, we can come up with a generic styling then once we have a better idea of what that will look like.
11 lines
249 B
Handlebars
11 lines
249 B
Handlebars
<div class="search_list_item">
|
|
<span>{{{ description_html }}}</span>
|
|
{{#if is_people}}
|
|
{{#each users}}
|
|
<span class="pill-container">
|
|
{{> input_pill user_pill_context}}
|
|
</span>
|
|
{{/each}}
|
|
{{/if}}
|
|
</div>
|