1
0
Fork 0
peertube/client/src/app/header/suggestion.component.html

18 lines
774 B
HTML
Raw Normal View History

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