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:
Pratik Chanda
2025-07-18 01:14:34 +05:30
committed by Tim Abbott
parent fe8853bcc9
commit e04e281413
3 changed files with 17 additions and 15 deletions

View File

@@ -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>