From f0a7f1f5b139567c9ac7c04902cbc1c76362e385 Mon Sep 17 00:00:00 2001 From: Kevin Qualters <56408403+kqualters-elastic@users.noreply.github.com> Date: Tue, 1 Mar 2022 08:23:34 -0500 Subject: [PATCH] [Security Solution] Update hover actions css selector to re-hide default cell actions (#126551) * Update hover actions css selector to re-hide default cell actions * Use better selector for expand icon --- .../public/common/components/page/index.tsx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/x-pack/plugins/security_solution/public/common/components/page/index.tsx b/x-pack/plugins/security_solution/public/common/components/page/index.tsx index d17f5ceb4f9b1..c85e7b9f36ac1 100644 --- a/x-pack/plugins/security_solution/public/common/components/page/index.tsx +++ b/x-pack/plugins/security_solution/public/common/components/page/index.tsx @@ -35,12 +35,13 @@ export const AppGlobalStyle = createGlobalStyle<{ theme: { eui: { euiColorPrimar z-index: 9950 !important; } - .euiDataGridRowCell__expandButton .euiDataGridRowCell__actionButtonIcon { + .euiDataGridRowCell .euiDataGridRowCell__expandActions .euiDataGridRowCell__actionButtonIcon { display: none; &:first-child, &:nth-child(2), - &:nth-child(3) { + &:nth-child(3), + &:last-child { display: inline-flex; }