aboutsummaryrefslogblamecommitdiffhomepage
path: root/client/src/app/header/suggestion.component.html
blob: 3f85ed6ae1a3c99663d152109e988ced81d36e6b (plain) (tree)
1
2
3
4
5
6
7
8
9
                                                                                               
                                              
                                                       

        
                                                                                                       
 
      
                                                                                         

                                                                                      
 
                                                                                 
                                                                                          
                                                                             
        
    
<a tabindex="-1" class="d-flex flex-auto flex-items-center p-2" [class.focus-visible]="active">
  <div class="flex-shrink-0 me-2 text-center">
    <my-global-icon iconName="search"></my-global-icon>
  </div>

  <img class="avatar me-2 flex-shrink-0 d-none" alt="" aria-label="Team" src="" width="28" height="28">

  <div
    class="flex-auto overflow-hidden text-start no-wrap css-truncate css-truncate-target"
    [attr.aria-label]="result.text" [innerHTML]="result.text | highlight : highlight"
  ></div>

  <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>
    <span *ngIf="result.type === 'search-index'" i18n>In the vidiverse</span>
  </div>
</a>