fix: data import table UI fix

This commit is contained in:
Shariq Ansari 2024-02-03 14:32:55 +05:30
parent 21d7cbca41
commit cfd5b91b6e
2 changed files with 13 additions and 1 deletions

View file

@ -34,7 +34,7 @@ frappe.data_import.ImportPreview = class ImportPreview {
<div class="col-sm-12">
<div class="table-actions margin-bottom">
</div>
<div class="table-preview border"></div>
<div class="table-preview"></div>
<div class="table-message"></div>
</div>
</div>

View file

@ -14,4 +14,16 @@
.table-preview {
margin-top: 12px;
.datatable .dt-scrollable .dt-row:last-child .dt-cell {
border-bottom: 1px solid var(--border-color);
}
.dt-row:last-child:not(.dt-row-filter) {
border-bottom: none;
}
.datatable .dt-header .dt-row-header {
background-color: unset;
}
}