table selection highlighting

This commit is contained in:
jonaswinkler 2020-12-13 15:28:20 +01:00
parent b5a85caa72
commit 2dc3019083
2 changed files with 6 additions and 1 deletions

View File

@ -119,7 +119,7 @@
<th class="d-none d-xl-table-cell">Added</th>
</thead>
<tbody>
<tr *ngFor="let d of list.documents">
<tr *ngFor="let d of list.documents" [ngClass]="list.isSelected(d) ? 'table-row-selected' : ''">
<td>
<div class="custom-control custom-checkbox">
<input type="checkbox" class="custom-control-input" id="docCheck{{d.id}}" [checked]="list.isSelected(d)" (change)="list.setSelected(d, $event.target.checked)">

View File

@ -0,0 +1,5 @@
@import "/src/theme";
.table-row-selected {
background-color: $primaryFaded;
}