From 01efb73560abade537a7ecbbab0631334572aa18 Mon Sep 17 00:00:00 2001 From: Maanvi Chetwani Date: Thu, 21 May 2026 20:59:26 +0100 Subject: [PATCH 1/4] add tooltips to icons in footer Signed-off-by: Maanvi Chetwani --- src/components/SocialLinks-Color/index.js | 28 +++++++++++++++++++++-- 1 file changed, 26 insertions(+), 2 deletions(-) diff --git a/src/components/SocialLinks-Color/index.js b/src/components/SocialLinks-Color/index.js index eaf460030bf18..8642e78941833 100644 --- a/src/components/SocialLinks-Color/index.js +++ b/src/components/SocialLinks-Color/index.js @@ -9,6 +9,7 @@ import youtube_icon from "../../assets/images/socialIcons/youtube.svg"; import docker_icon from "../../assets/images/socialIcons/docker.svg"; import linkedin_icon from "../../assets/images/socialIcons/linkedin-light.svg"; import bluesky_icon from "../../assets/images/socialIcons/bluesky.svg"; +import { Tooltip } from "react-tooltip"; import SocialLinksWrapper from "./sociallinkscolor.style"; const SocialLinksColor = () => { @@ -16,33 +17,43 @@ const SocialLinksColor = () => { - + forum + mail - + + slack + + { alt="bluesky" /> + github + { alt="linkedin" /> + { alt="youtube" /> + { alt="docker" /> + From 5bbce5d749c61743acd01cf69d682ea543d8f29f Mon Sep 17 00:00:00 2001 From: Maanvi Chetwani Date: Sat, 23 May 2026 13:38:08 +0100 Subject: [PATCH 2/4] using CustomTooltip from @sistent/sistent Signed-off-by: Maanvi Chetwani --- src/components/SocialLinks-Color/index.js | 204 +++++++++++----------- 1 file changed, 99 insertions(+), 105 deletions(-) diff --git a/src/components/SocialLinks-Color/index.js b/src/components/SocialLinks-Color/index.js index 8642e78941833..3e3e44b5937ac 100644 --- a/src/components/SocialLinks-Color/index.js +++ b/src/components/SocialLinks-Color/index.js @@ -9,7 +9,7 @@ import youtube_icon from "../../assets/images/socialIcons/youtube.svg"; import docker_icon from "../../assets/images/socialIcons/docker.svg"; import linkedin_icon from "../../assets/images/socialIcons/linkedin-light.svg"; import bluesky_icon from "../../assets/images/socialIcons/bluesky.svg"; -import { Tooltip } from "react-tooltip"; +import { CustomTooltip } from "@sistent/sistent"; import SocialLinksWrapper from "./sociallinkscolor.style"; const SocialLinksColor = () => { @@ -17,110 +17,104 @@ const SocialLinksColor = () => { - - forum - - - - mail - - - - slack - - - - - - - - bluesky - - - - github - - - - linkedin - - - - youtube - - - - docker - - + + + forum + + + + + mail + + + + + slack + + + + + + + + + + bluesky + + + + + github + + + + + linkedin + + + + + youtube + + + + + docker + + From 429071701ca8d1204617f541904b2c6d3675223d Mon Sep 17 00:00:00 2001 From: Maanvi Chetwani Date: Mon, 25 May 2026 21:23:32 +0100 Subject: [PATCH 3/4] reduce tooltip size on footer social media icons Signed-off-by: Maanvi Chetwani --- src/components/SocialLinks-Color/index.js | 27 +++++++++++++++-------- 1 file changed, 18 insertions(+), 9 deletions(-) diff --git a/src/components/SocialLinks-Color/index.js b/src/components/SocialLinks-Color/index.js index 3e3e44b5937ac..6a9da8e1ba8d4 100644 --- a/src/components/SocialLinks-Color/index.js +++ b/src/components/SocialLinks-Color/index.js @@ -12,17 +12,26 @@ import bluesky_icon from "../../assets/images/socialIcons/bluesky.svg"; import { CustomTooltip } from "@sistent/sistent"; import SocialLinksWrapper from "./sociallinkscolor.style"; +const tooltipStyles = { + tooltip: { + sx: { + fontSize: "0.65rem", + padding: "3px 6px", + }, + }, +}; + const SocialLinksColor = () => { return ( - + forum - + { mail - + slack - + { - + { /> - + { github - + { /> - + { /> - + Date: Mon, 25 May 2026 21:57:57 +0100 Subject: [PATCH 4/4] reduce tooltip size Signed-off-by: Maanvi Chetwani --- src/components/SocialLinks-Color/index.js | 27 ++++++++--------------- 1 file changed, 9 insertions(+), 18 deletions(-) diff --git a/src/components/SocialLinks-Color/index.js b/src/components/SocialLinks-Color/index.js index 6a9da8e1ba8d4..f353c8b05bce1 100644 --- a/src/components/SocialLinks-Color/index.js +++ b/src/components/SocialLinks-Color/index.js @@ -12,26 +12,17 @@ import bluesky_icon from "../../assets/images/socialIcons/bluesky.svg"; import { CustomTooltip } from "@sistent/sistent"; import SocialLinksWrapper from "./sociallinkscolor.style"; -const tooltipStyles = { - tooltip: { - sx: { - fontSize: "0.65rem", - padding: "3px 6px", - }, - }, -}; - const SocialLinksColor = () => { return ( - + forum - + { mail - + slack - + { - + { /> - + { github - + { /> - + { /> - +