mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 01:38:56 -04:00
Visualize data table: Summary row is detached and jumps in Firefox (#97083)
* Use display: flex for footer in table * Update table_visualization.scss * Update table_visualization.scss Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
This commit is contained in:
parent
0876fce6b9
commit
0aa31add4a
1 changed files with 9 additions and 0 deletions
|
@ -12,6 +12,15 @@
|
|||
overflow: auto;
|
||||
|
||||
@include euiScrollBar;
|
||||
|
||||
// Sticky footer doesn't correct work with inline-flex in Firefox.
|
||||
// As footer the last element I don't see any reason to use inline-flex for this element.
|
||||
// Display: flex fixes jumping on hover in Firefox.
|
||||
// Created issue on EUI (https://github.com/elastic/eui/issues/4729).
|
||||
// Once addressed, we can remove this local fix.
|
||||
.euiDataGrid--stickyFooter .euiDataGridFooter {
|
||||
display: flex;
|
||||
}
|
||||
}
|
||||
|
||||
.tbvChart__split {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue