From 45d35ad073199fb5e27d94000bebb34557b4b9a4 Mon Sep 17 00:00:00 2001 From: Evangelos Skopelitis Date: Thu, 24 Apr 2025 08:00:46 -0400 Subject: [PATCH 1/2] plugin-catalog: Inherit theme color for UI elements Signed-off-by: Evangelos Skopelitis --- plugin-catalog/src/components/plugins/Detail.tsx | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/plugin-catalog/src/components/plugins/Detail.tsx b/plugin-catalog/src/components/plugins/Detail.tsx index 6bec2def18..311a727324 100644 --- a/plugin-catalog/src/components/plugins/Detail.tsx +++ b/plugin-catalog/src/components/plugins/Detail.tsx @@ -122,13 +122,16 @@ const pluginSnackbarAction = (closeCallback: () => void) => { return ( <> - + ); }; @@ -222,7 +225,7 @@ export function PurePluginDetail({ color: 'white', textTransform: 'none', '&:hover': { - color: 'black', + color: 'inherit', }, }} onClick={onInstall} From ce9c33f0521e6660330f1803e45b47491542a7df Mon Sep 17 00:00:00 2001 From: Evangelos Skopelitis Date: Thu, 24 Apr 2025 08:01:59 -0400 Subject: [PATCH 2/2] plugin-catalog: Remove unnecessary button text Signed-off-by: Evangelos Skopelitis --- plugin-catalog/src/components/plugins/Detail.tsx | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/plugin-catalog/src/components/plugins/Detail.tsx b/plugin-catalog/src/components/plugins/Detail.tsx index 311a727324..e9ce7678f0 100644 --- a/plugin-catalog/src/components/plugins/Detail.tsx +++ b/plugin-catalog/src/components/plugins/Detail.tsx @@ -236,11 +236,8 @@ export function PurePluginDetail({ ) : null ) : ( <> - - - {currentAction} - + ),