Implement DATEV export functionality in DataViewer and enhance TransactionsTable with selection features and improved row styling. Update environment variables and add devServer configuration in webpack for better development experience.
This commit is contained in:
@@ -34,6 +34,34 @@
|
||||
min-width: 200px;
|
||||
}
|
||||
|
||||
/* Alternating row colors for better readability */
|
||||
.ag-row-odd {
|
||||
background-color: #f8f9fa !important;
|
||||
}
|
||||
|
||||
.ag-row-even {
|
||||
background-color: #ffffff !important;
|
||||
}
|
||||
|
||||
/* Maintain alternating colors on hover */
|
||||
.ag-row-odd:hover {
|
||||
background-color: #e9ecef !important;
|
||||
}
|
||||
|
||||
.ag-row-even:hover {
|
||||
background-color: #f1f3f4 !important;
|
||||
}
|
||||
|
||||
/* Ensure JTL-only rows (red rows) override alternating colors */
|
||||
.ag-row[style*="background-color: rgb(255, 235, 238)"] {
|
||||
background-color: #ffebee !important;
|
||||
}
|
||||
|
||||
/* Selected rows */
|
||||
.ag-row.selected-row {
|
||||
background-color: #e3f2fd !important;
|
||||
color: #1976d2 !important;
|
||||
}
|
||||
|
||||
</style>
|
||||
<script>
|
||||
|
||||
Reference in New Issue
Block a user