We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 644d6f2 commit 9e2b56cCopy full SHA for 9e2b56c
projects/components/src/table/table.component.scss
@@ -48,7 +48,7 @@ $header-height: 32px;
48
}
49
50
&.selected-row {
51
- background: $gray-1;
+ background: $blue-1;
52
border-bottom: 1px solid $blue-2;
53
border-top: 1px solid $blue-2;
54
projects/components/src/table/table.component.ts
@@ -678,7 +678,6 @@ export class TableComponent
678
679
public shouldHighlightRowAsSelection(row: StatefulTableRow): boolean {
680
return (
681
- this.selectionMode !== TableSelectionMode.Multiple &&
682
this.selections !== undefined &&
683
this.selections.find(selection => TableCdkRowUtil.isEqualExceptState(selection, row)) !== undefined
684
);
0 commit comments