|
4 | 4 | </div> |
5 | 5 | <input #searchInputText (keyup.enter)="onKeyUpEnter()" |
6 | 6 | type="text" [(ngModel)]="actualFilterValue" class="form-control font-weight-light" |
7 | | - placeholder="Press ENTER to list all {{elementType}} or search by UUID or Name" aria-label="Username" aria-describedby="basic-addon1" /> |
| 7 | + placeholder="Search for {{elementType}}" aria-label="search" aria-describedby="basic-addon1" |
| 8 | + data-toggle="tooltip" data-placement="bottom" data-html="true" |
| 9 | + title="Press ENTER to list all {{elementType}} or search {{elementType}} by UUID or Name"/> |
8 | 10 |
|
9 | 11 | <div class="input-group-append"> |
10 | 12 | <button *ngIf="actualFilterValue || searchAll" class="btn btn-outline-secondary border-right-0" type="button" (click)="reset()" |
11 | | - aria-haspopup="true" aria-expanded="false"> |
| 13 | + aria-haspopup="true" aria-expanded="false" |
| 14 | + data-toggle="tooltip" data-placement="top" data-html="true" |
| 15 | + title="Clear search for {{elementType}}"> |
12 | 16 | <i class="fas fa-window-close"></i> |
13 | 17 | </button> |
14 | 18 | <button class="btn btn-outline-secondary border-left-0" type="button" (click)="changeSortingOrder()" |
15 | 19 | aria-haspopup="true" aria-expanded="false"> |
16 | | - <i *ngIf="actualSortingOrder == 'asc'" class="fas fa-sort-amount-up"></i> |
17 | | - <i *ngIf="actualSortingOrder == 'desc'" class="fas fa-sort-amount-down"></i> |
| 20 | + <i *ngIf="actualSortingOrder == 'asc'" class="fas fa-sort-amount-up" |
| 21 | + data-toggle="tooltip" data-placement="top" data-html="true" |
| 22 | + title="Sort {{elementType}} in ascending order"></i> |
| 23 | + <i *ngIf="actualSortingOrder == 'desc'" class="fas fa-sort-amount-down" |
| 24 | + data-toggle="tooltip" data-placement="top" data-html="true" |
| 25 | + title="Sort {{elementType}} in descending order"></i> |
18 | 26 | </button> |
19 | 27 | <!-- <button class="btn btn-outline-secondary dropdown-toggle" type="button" data-toggle="dropdown" |
20 | 28 | aria-haspopup="true" aria-expanded="false"> |
|
0 commit comments