Skip to content

Commit

Permalink
(update) resolve #52 to highlight transaction on-click and on-hover 🚀
Browse files Browse the repository at this point in the history
  • Loading branch information
EbodShojaei committed Dec 2, 2024
1 parent 402b263 commit 9d260c3
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions src/AccountGoWeb/Views/Sales/SalesReceipts.cshtml
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
@model string

<style>
/* Highlight the selected row with a light blue background */
.ag-row-selected {
background-color: #d0e7ff !important;
color: #333 !important;
}
.ag-row:hover {
background-color: #98939e;
}
</style>

<div>
<a href="~/sales/addreceipt" class="btn">
<i class="fa fa-plus"></i>
Expand Down

0 comments on commit 9d260c3

Please sign in to comment.