feat: small UI fixes
This commit is contained in:
@@ -40,9 +40,9 @@
|
||||
</span>
|
||||
</th>
|
||||
<td *ngFor="let list of lists$ | async">
|
||||
<nb-checkbox
|
||||
[checked]="isChecked(account.lists, list.id)"
|
||||
(checkedChange)="onCheckedChange($event, account.id, list.id)">
|
||||
<nb-checkbox style="cursor: pointer;"
|
||||
[checked]="isChecked(account.lists, list.id)"
|
||||
(checkedChange)="onCheckedChange($event, account.id, list.id)">
|
||||
</nb-checkbox>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
@@ -36,7 +36,7 @@
|
||||
<td class="col medium">
|
||||
<div *ngFor="let list of row.lists">
|
||||
{{list.title}}
|
||||
<nb-icon icon="person-remove-outline" (click)="removeAccountFromList(row.id, list.id)">
|
||||
<nb-icon icon="person-remove-outline" (click)="removeAccountFromList(row.id, list.id)" style="cursor: pointer;">
|
||||
Remove Account from list
|
||||
</nb-icon>
|
||||
</div>
|
||||
@@ -46,7 +46,7 @@
|
||||
<select class="list-select" #listSelect>
|
||||
<option *ngFor="let list of lists$ | async" [value]="list.id">{{list.title}}</option>
|
||||
</select>
|
||||
<nb-icon icon="person-add-outline" (click)="addAccountToSelectedList(row.id, listSelect.value)">
|
||||
<nb-icon icon="person-add-outline" (click)="addAccountToSelectedList(row.id, listSelect.value)" style="cursor: pointer;">
|
||||
Add Account to list
|
||||
</nb-icon>
|
||||
</div>
|
||||
|
||||
@@ -24,7 +24,7 @@ table {
|
||||
&.large {
|
||||
min-width: 400px;
|
||||
}
|
||||
max-width: calc(100vw / 3);
|
||||
max-width: calc(100vw / 4);
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user