fix(theming): fix TimeTable chart issues (#34868)

This commit is contained in:
Gabriel Torres Ruiz
2025-09-02 07:48:13 -03:00
committed by GitHub
parent 4695be5cc5
commit d183969744
64 changed files with 3995 additions and 709 deletions

View File

@@ -77,7 +77,7 @@ const ControlHeader: FC<ControlHeaderProps> = ({
<span
css={() => css`
position: absolute;
top: 60%;
top: 50%;
right: 0;
padding-left: ${theme.sizeUnit}px;
transform: translate(100%, -50%);
@@ -156,13 +156,18 @@ const ControlHeader: FC<ControlHeaderProps> = ({
</span>
)}
{validationErrors?.length > 0 && (
<span data-test="error-tooltip">
<span
data-test="error-tooltip"
css={css`
cursor: pointer;
`}
>
<Tooltip
id="error-tooltip"
placement="top"
title={validationErrors?.join(' ')}
>
<Icons.CloseCircleOutlined iconColor={theme.colorErrorText} />
<Icons.InfoCircleOutlined iconColor={theme.colorErrorText} />
</Tooltip>{' '}
</span>
)}