Fixed striped rows

pull/5756/head
Cagatay Civici 2024-05-13 02:31:23 +03:00
parent 8d3559c9ef
commit 9f9c5bb494
1 changed files with 2 additions and 2 deletions

View File

@ -493,10 +493,10 @@ p-datatable-gridlines .p-datatable-tbody > tr:last-child > td {
}
.p-datatable.p-datatable-striped .p-datatable-tbody > tr.p-row-odd {
background: ${dt('datatable.row.striped.background')});
background: ${dt('datatable.row.striped.background')};
}
.p-datatable.p-datatable-striped .p-datatable-tbody > tr.p-row-odd.p-highlight {
.p-datatable.p-datatable-striped .p-datatable-tbody > tr.p-row-odd.p-datatable-row-selected {
background: ${dt('datatable.row.selected.background')};
color: ${dt('datatable.row.selected.color')};
}