2020-02-12 10:20:49 -05:00
|
|
|
|
<a tabindex="-1" class="d-flex flex-auto flex-items-center p-2" [class.focus-visible]="active">
|
2020-01-25 10:32:06 -05:00
|
|
|
|
<div class="flex-shrink-0 mr-2 text-center">
|
2020-05-29 10:16:24 -04:00
|
|
|
|
<my-global-icon iconName="search"></my-global-icon>
|
2020-01-25 10:32:06 -05:00
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<img class="avatar mr-2 flex-shrink-0 d-none" alt="" aria-label="Team" src="" width="28" height="28">
|
|
|
|
|
|
2020-05-29 10:16:24 -04:00
|
|
|
|
<div
|
|
|
|
|
class="flex-auto overflow-hidden text-left no-wrap css-truncate css-truncate-target"
|
|
|
|
|
[attr.aria-label]="result.text" [innerHTML]="result.text | highlight : highlight"
|
|
|
|
|
></div>
|
2020-01-25 10:32:06 -05:00
|
|
|
|
|
2020-05-29 10:16:24 -04:00
|
|
|
|
<div class="border rounded flex-shrink-0 px-1 bg-gray text-gray-light ml-1 f6">
|
2020-02-04 10:44:53 -05:00
|
|
|
|
<span *ngIf="result.type === 'search-instance'" i18n>In this instance</span>
|
2020-05-29 10:16:24 -04:00
|
|
|
|
<span *ngIf="result.type === 'search-index'" i18n>In the vidiverse</span>
|
2020-01-25 10:32:06 -05:00
|
|
|
|
</div>
|
2020-05-29 10:16:24 -04:00
|
|
|
|
</a>
|