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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user