Merge pull request #24718 from shariquerik/data-import-fix

fix: data import table UI fix
This commit is contained in:
Shariq Ansari 2024-02-03 17:15:43 +05:30 committed by GitHub
commit ea6dbcf217
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
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;
}
}