From 410e8d97de70a9ab344d15a113726f759d9ffb19 Mon Sep 17 00:00:00 2001 From: Cee Chen Date: Thu, 26 Oct 2023 10:17:36 -0700 Subject: [PATCH 1/2] Remove `overflow: hidden` from content wrapper - the main parent cell div already has `overflow: hidden`, so this change lets content be visible beyond the cell padding but still cut off beyond the cell itself --- src/components/datagrid/_data_grid_data_row.scss | 1 - 1 file changed, 1 deletion(-) 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 { From eb50241a8500344af304744b3d46e469fe1f1b3b Mon Sep 17 00:00:00 2001 From: Cee Chen Date: Thu, 26 Oct 2023 10:30:07 -0700 Subject: [PATCH 2/2] changelog --- upcoming_changelogs/7320.md | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 upcoming_changelogs/7320.md 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