From 21724f29f603c96040e9aba2da79f422c010b7bb Mon Sep 17 00:00:00 2001 From: soup Date: Sun, 12 Feb 2023 15:32:10 +0100 Subject: [PATCH] enhancement(web): reduce tooltip icon contrast (#709) * failed to compile locally without trailing slash * matching tooltip color with subtitles/descriptions * reverted docs icon * fixed freeleech tooltip text * corrected colors for tooltip icon on login page --- web/src/components/tooltips/CustomTooltip.tsx | 2 +- web/src/domain/routes.tsx | 2 +- web/src/screens/Base.tsx | 4 ++-- web/src/screens/auth/login.tsx | 2 +- web/src/screens/filters/details.tsx | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/web/src/components/tooltips/CustomTooltip.tsx b/web/src/components/tooltips/CustomTooltip.tsx index 34dd3e4..5f92c2f 100644 --- a/web/src/components/tooltips/CustomTooltip.tsx +++ b/web/src/components/tooltips/CustomTooltip.tsx @@ -18,7 +18,7 @@ export const CustomTooltip = ({ const id = `${anchorId}-tooltip`; return (
- + {children} diff --git a/web/src/domain/routes.tsx b/web/src/domain/routes.tsx index 1f94394..4ae4613 100644 --- a/web/src/domain/routes.tsx +++ b/web/src/domain/routes.tsx @@ -19,7 +19,7 @@ import { LogSettings, NotificationSettings, ReleaseSettings -} from "../screens/settings"; +} from "../screens/settings/"; import { RegexPlayground } from "../screens/settings/RegexPlayground"; import { baseUrl } from "../utils"; diff --git a/web/src/screens/Base.tsx b/web/src/screens/Base.tsx index 5256786..5b352d8 100644 --- a/web/src/screens/Base.tsx +++ b/web/src/screens/Base.tsx @@ -1,7 +1,7 @@ import { Fragment } from "react"; import { Link, NavLink, Outlet } from "react-router-dom"; import { Disclosure, Menu, Transition } from "@headlessui/react"; -import { BookOpenIcon, UserIcon } from "@heroicons/react/24/solid"; +import { ArrowTopRightOnSquareIcon, UserIcon } from "@heroicons/react/24/solid"; import { Bars3Icon, XMarkIcon, MegaphoneIcon } from "@heroicons/react/24/outline"; import { AuthContext } from "../utils/Context"; @@ -96,7 +96,7 @@ export default function Base() { )} > Docs -
} />