Merge pull request #8219 from artoscinote/ma_SCI_11548

Fix positioning of 'Processing' element on legacy datatables [SCI-11548]
This commit is contained in:
Martin Artnik 2025-02-10 10:47:18 +01:00 committed by GitHub
commit fb64248b90
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -36,3 +36,9 @@ table.dataTable.table--resizable-columns {
}
}
}
div.dataTables_wrapper div.dataTables_processing {
// This overrides default library behaviour, where the 'Processing' element
// can go off-screen on large tables due to top: 50% positioning.
top: 150px !important;
}