feat: small UI fixes

This commit is contained in:
2022-12-23 16:12:22 +01:00
parent 618a99e940
commit efa5ba3f62
3 changed files with 6 additions and 6 deletions

View File

@@ -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>

View File

@@ -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>

View File

@@ -24,7 +24,7 @@ table {
&.large {
min-width: 400px;
}
max-width: calc(100vw / 3);
max-width: calc(100vw / 4);
overflow: hidden;
text-overflow: ellipsis;
}