mirror of
https://github.com/zulip/zulip.git
synced 2025-11-02 04:53:36 +00:00
search: Remove background suggestion highlight for text search.
This commit removes the background suggestion highlight in the search suggestion for text search suggestion.
This commit is contained in:
committed by
Tim Abbott
parent
fe8853bcc9
commit
e04e281413
@@ -1,14 +1,12 @@
|
||||
<div class="search_list_item">
|
||||
{{#each pills}}
|
||||
<span class="pill-container">
|
||||
{{#if (eq this.type "search_user")}}
|
||||
{{> search_user_pill this}}
|
||||
{{else if (eq this.operator "search")}}
|
||||
{{{this.description_html}}}
|
||||
{{else}}
|
||||
{{> input_pill this}}
|
||||
{{/if}}
|
||||
</span>
|
||||
{{#if (eq this.operator "search")}}
|
||||
<div class="description">{{{this.description_html}}}</div>
|
||||
{{else if (eq this.type "search_user")}}
|
||||
<span class="pill-container">{{> search_user_pill this}}</span>
|
||||
{{else}}
|
||||
<span class="pill-container">{{> input_pill this}}</span>
|
||||
{{/if}}
|
||||
{{/each}}
|
||||
{{#if description_html}}<div class="description">{{{description_html}}}</div>{{/if}}
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user