diff --git a/x-pack/plugins/security_solution/public/management/components/endpoint_responder/command_render_components/get_processes_action.tsx b/x-pack/plugins/security_solution/public/management/components/endpoint_responder/command_render_components/get_processes_action.tsx index 81ded3d02094e..fee7a2b73e815 100644 --- a/x-pack/plugins/security_solution/public/management/components/endpoint_responder/command_render_components/get_processes_action.tsx +++ b/x-pack/plugins/security_solution/public/management/components/endpoint_responder/command_render_components/get_processes_action.tsx @@ -20,7 +20,7 @@ import type { ActionRequestComponentProps } from '../types'; // @ts-expect-error TS2769 const StyledEuiBasicTable = styled(EuiBasicTable)` table { - background-color: ${({ theme: { eui } }) => eui.euiPageBackgroundColor}; + background-color: transparent; } .euiTableHeaderCell { border-bottom: ${(props) => props.theme.eui.euiBorderThin}; @@ -30,7 +30,7 @@ const StyledEuiBasicTable = styled(EuiBasicTable)` } .euiTableRow { &:hover { - background-color: white !important; + background-color: ${({ theme: { eui } }) => eui.euiColorEmptyShade} !important; } .euiTableRowCell { border-top: none !important;