[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
This commit is contained in:
Kevin Qualters 2022-03-01 08:23:34 -05:00 committed by GitHub
parent aafb7be138
commit f0a7f1f5b1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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;
}