Skip to content

Commit

Permalink
[Security Solution][Endpoint] Fix hover color for processes respons…
Browse files Browse the repository at this point in the history
…e action output data rows (elastic#156734)

## Summary

- Fixes the color used to highlight a row from the output of the
`processes` response action so that selected content (via mouse) is
still legible when the kibana dark theme is used.

Fixes: elastic#154594
(cherry picked from commit 3b789e3)
  • Loading branch information
paul-tavares committed May 8, 2023
1 parent 20bb8e2 commit 3ae8f93
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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};
Expand All @@ -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;
Expand Down

0 comments on commit 3ae8f93

Please sign in to comment.