From a066d02fe77e3bcb0d5ab1ce5911f79229c4a906 Mon Sep 17 00:00:00 2001 From: Alex Andreev Date: Sun, 23 May 2021 15:52:24 +0300 Subject: [PATCH] Fix browse icon onClick event Signed-off-by: Alex Andreev --- .../components/+extensions/install.module.css | 1 + src/renderer/components/+extensions/install.tsx | 15 ++++++++------- 2 files changed, 9 insertions(+), 7 deletions(-) diff --git a/src/renderer/components/+extensions/install.module.css b/src/renderer/components/+extensions/install.module.css index 1cb5b5175a..fbf236177a 100644 --- a/src/renderer/components/+extensions/install.module.css +++ b/src/renderer/components/+extensions/install.module.css @@ -1,5 +1,6 @@ .icon { @apply h-5 w-5 mr-3 cursor-pointer; + background-color: transparent!important; } .icon:hover { diff --git a/src/renderer/components/+extensions/install.tsx b/src/renderer/components/+extensions/install.tsx index d07533d3ba..9ed4cb0a9a 100644 --- a/src/renderer/components/+extensions/install.tsx +++ b/src/renderer/components/+extensions/install.tsx @@ -29,6 +29,7 @@ import { SubTitle } from "../layout/sub-title"; import { TooltipPosition } from "../tooltip"; import { ExtensionInstallationStateStore } from "./extension-install.store"; import { observer } from "mobx-react"; +import { MaterialTooltip } from "../+catalog/material-tooltip/material-tooltip"; interface Props { installPath: string; @@ -70,13 +71,13 @@ export const Install = observer((props: Props) => { onChange={onChange} onSubmit={installFromInput} iconRight={ - + + + } />