Files
zulip/web/templates/search_list_item.hbs
evykassirer 84cf7f8677 input pill: Remove pill-container-btn class in favor of search styling.
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.
2024-06-20 15:16:17 -07:00

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>