color change of selected rows

This commit is contained in:
2024-03-23 15:25:54 +01:00
parent 6123a5532a
commit 71d44dd1f9
3 changed files with 9 additions and 8 deletions

View File

@@ -638,15 +638,15 @@ const selectedRowClassNameFunction = (item) => {
}
.selected-row {
--easy-table-body-row-hover-background-color: #f56c6c;
--easy-table-body-row-background-color: #f56c6c;
--easy-table-body-row-font-color: #fff;
--easy-table-body-even-row-background-color: #f56c6c;
--easy-table-body-row-hover-background-color: #e5e6f9;
--easy-table-body-row-background-color: #e5e6f9;
--easy-table-body-row-font-color: #000;
--easy-table-body-even-row-background-color: #e5e6f9;
}
:root .result-country {
--easy-table-body-row-background-color: yellow;
--easy-table-body-even-row-background-color: yellow;
--easy-table-body-row-background-color: #e5e6f9;
--easy-table-body-even-row-background-color: #e5e6f9;
}
</style>
<style src="vue-multiselect/dist/vue-multiselect.css"></style>