1
0
mirror of https://github.com/bitwarden/browser synced 2026-01-21 20:03:43 +00:00

[EC-86] Make table cells use a pointer cursor

This commit is contained in:
Shane Melton
2022-10-07 16:26:54 -07:00
parent 33ad8ef8c5
commit 683294c102

View File

@@ -73,15 +73,15 @@
</ng-container>
<ng-container body>
<tr bitRow *ngFor="let g of visibleGroups">
<td bitCell (click)="check(g)">
<td bitCell (click)="check(g)" class="tw-cursor-pointer">
<input type="checkbox" [(ngModel)]="g.checked" />
</td>
<td bitCell class="tw-text-lg tw-font-bold" (click)="edit(g)">
<td bitCell class="tw-cursor-pointer tw-text-lg tw-font-bold" (click)="edit(g)">
<button (click)="edit(g)" bitLink>
{{ g.name }}
</button>
</td>
<td bitCell (click)="edit(g)">
<td bitCell (click)="edit(g)" class="tw-cursor-pointer">
<span
*ngFor="let cName of g.collectionNames.slice(0, maxCollections); let last = last"
bitBadge