From f58509d0d37c127f90bccf701078638dc27ce40f Mon Sep 17 00:00:00 2001 From: Cee Chen Date: Wed, 22 Nov 2023 08:35:06 -0800 Subject: [PATCH] Fix bug with cell actions/outline CSS variable color - cell actions bg color was missing on popover open - always defaulting to color primary fixes the issue --- src/components/datagrid/_data_grid_data_row.scss | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/components/datagrid/_data_grid_data_row.scss b/src/components/datagrid/_data_grid_data_row.scss index 0fdfde41139..6bc2037e470 100644 --- a/src/components/datagrid/_data_grid_data_row.scss +++ b/src/components/datagrid/_data_grid_data_row.scss @@ -31,9 +31,10 @@ border-right-color: $euiBorderColor; } + --euiDataGridCellOutlineColor: #{$euiColorPrimary}; + &:hover, &:focus { - --euiDataGridCellOutlineColor: #{$euiColorPrimary}; @include euiDataGridCellFocus; }