From 6b990be0576c405425e749220cbcfc11d0883ae5 Mon Sep 17 00:00:00 2001 From: MariaAga Date: Mon, 24 Jun 2024 18:06:24 +0100 Subject: [PATCH] Fixes #37591 - remove hand cursor from generic table --- .../components/PF4/TableIndexPage/TableIndexPage.scss | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/webpack/assets/javascripts/react_app/components/PF4/TableIndexPage/TableIndexPage.scss b/webpack/assets/javascripts/react_app/components/PF4/TableIndexPage/TableIndexPage.scss index 5783290c60c..5f919555973 100644 --- a/webpack/assets/javascripts/react_app/components/PF4/TableIndexPage/TableIndexPage.scss +++ b/webpack/assets/javascripts/react_app/components/PF4/TableIndexPage/TableIndexPage.scss @@ -31,7 +31,7 @@ } .pf-c-toolbar__group { flex-grow: 1; - &.pf-m-align-right{ + &.pf-m-align-right { justify-content: flex-end; } &:first-child { @@ -39,4 +39,7 @@ width: min-content; } } + .pf-c-table tr.pf-m-hoverable { + cursor: default; + } }