[ML] Data Grid: Fix alignment of sorting arrow when histogram charts are enabled (#110053)

Adds a CSS override to align the sorting arrow at the bottom when histogram charts are enabled.
This commit is contained in:
Walter Rafelsberger 2021-08-27 23:50:44 +02:00 committed by GitHub
parent 2ed3fcdec1
commit 8eea9005f1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2,4 +2,10 @@
.euiDataGridRowCell--boolean {
text-transform: none;
}
// Override to align the sorting arrow at the bottom when histogram charts are enabled
.euiDataGridHeaderCell .euiDataGridHeaderCell__sortingArrow {
margin-top: auto;
margin-bottom: 0;
}
}