diff options
author | stanislavh <stanislav.honcharov@sonarsource.com> | 2023-09-18 14:09:19 +0200 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2023-09-19 20:02:46 +0000 |
commit | f86d0014455522e1c0e98eadec4a8e6fbc400297 (patch) | |
tree | 367d01650e4ed8256cd543f092a6ad8b9f8d897e /server/sonar-web/design-system/src/components/SpotlightTour.tsx | |
parent | c13c409e59105e0187da35c14e7ba1d2e76a39a7 (diff) | |
download | sonarqube-f86d0014455522e1c0e98eadec4a8e6fbc400297.tar.gz sonarqube-f86d0014455522e1c0e98eadec4a8e6fbc400297.zip |
SONAR-20297 Adjust styles for CCT tour component
Diffstat (limited to 'server/sonar-web/design-system/src/components/SpotlightTour.tsx')
-rw-r--r-- | server/sonar-web/design-system/src/components/SpotlightTour.tsx | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/server/sonar-web/design-system/src/components/SpotlightTour.tsx b/server/sonar-web/design-system/src/components/SpotlightTour.tsx index 36f47f1a9fd..6e162316776 100644 --- a/server/sonar-web/design-system/src/components/SpotlightTour.tsx +++ b/server/sonar-web/design-system/src/components/SpotlightTour.tsx @@ -117,7 +117,7 @@ function TooltipComponent({ return ( <StyledPopupWrapper - className="sw-p-3 sw-body-sm sw-w-[300px] sw-relative sw-border-0" + className="sw-p-3 sw-body-sm sw-w-[315px] sw-relative sw-border-0" placement={(step.placement as Placement | undefined) ?? DEFAULT_PLACEMENT} zLevel={PopupZLevel.Absolute} {...tooltipProps} @@ -129,7 +129,7 @@ function TooltipComponent({ )} <div className="sw-flex sw-justify-between" ref={setRef}> - <strong className="sw-mb-2">{step.title}</strong> + <strong className="sw-body-md-highlight sw-mb-2">{step.title}</strong> <WrapperButton className="sw-w-[30px] sw-h-[30px] sw--mt-2 sw--mr-2 sw-flex sw-justify-center" {...skipProps} @@ -198,7 +198,7 @@ export function SpotlightTour(props: SpotlightTourProps) { }, }))} tooltipComponent={( - tooltipProps: React.PropsWithChildren<TooltipRenderProps & { step: SpotlightTourStep }> + tooltipProps: React.PropsWithChildren<TooltipRenderProps & { step: SpotlightTourStep }>, ) => <TooltipComponent stepXofYLabel={stepXofYLabel} {...tooltipProps} />} {...otherProps} /> @@ -208,6 +208,7 @@ export function SpotlightTour(props: SpotlightTourProps) { const StyledPopupWrapper = styled(PopupWrapper)<{ placement: Placement }>` background-color: ${themeColor('spotlightBackgroundColor')}; ${tw`sw-overflow-visible`}; + ${tw`sw-rounded-1`}; ${({ placement }) => getStyledPopupWrapperMargin(placement)}; `; @@ -273,7 +274,9 @@ const SpotlightArrow = styled.div<{ rotate: string }>` background-color: ${themeColor('spotlightPulseBackground')}; left: 100%; top: calc(50% - calc(0.125rem / 2)); - transition: margin 0.3s, left 0.3s; + transition: + margin 0.3s, + left 0.3s; content: ''; } `; |