From 9f1ada5dd065581bf674e588a991da379be06731 Mon Sep 17 00:00:00 2001 From: Cee Chen <549407+cee-chen@users.noreply.github.com> Date: Thu, 26 Oct 2023 12:08:29 -0700 Subject: [PATCH] [EuiDataGrid] Fix over-eager visual cutoff on cell contents (#7320) --- src/components/datagrid/_data_grid_data_row.scss | 1 - upcoming_changelogs/7320.md | 3 +++ 2 files changed, 3 insertions(+), 1 deletion(-) create mode 100644 upcoming_changelogs/7320.md diff --git a/src/components/datagrid/_data_grid_data_row.scss b/src/components/datagrid/_data_grid_data_row.scss index 5a6869fe66c..9c46936a516 100644 --- a/src/components/datagrid/_data_grid_data_row.scss +++ b/src/components/datagrid/_data_grid_data_row.scss @@ -100,7 +100,6 @@ .euiDataGridRowCell__contentWrapper { position: relative; // Needed for .euiDataGridRowCell__actions--overlay height: 100%; - overflow: hidden; } .euiDataGridRowCell__defaultHeight { diff --git a/upcoming_changelogs/7320.md b/upcoming_changelogs/7320.md new file mode 100644 index 00000000000..74e4ad7fe20 --- /dev/null +++ b/upcoming_changelogs/7320.md @@ -0,0 +1,3 @@ +**Bug fixes** + +- Fixed `EuiDataGrid` cells visually cutting off overflowing content a little too quickly