{showIcon &&
}
diff --git a/ui-core/src/stories/Input.stories.tsx b/ui-core/src/stories/Input.stories.tsx
index 7be7d09cd..a8c4183f0 100644
--- a/ui-core/src/stories/Input.stories.tsx
+++ b/ui-core/src/stories/Input.stories.tsx
@@ -172,7 +172,23 @@ export const ErrorInput: Story = {
},
},
};
+
export const TooltipErrorInput: Story = {
+ args: {
+ label: 'Name',
+ type: 'text',
+ required: true,
+ value: 'Michel Sardou',
+ statusWithMessage: {
+ tooltip: 'right',
+ status: 'error',
+ message: '“Michel Sardou” can’t be used',
+ },
+ statusIconPosition: 'before-status-message',
+ },
+};
+
+export const TwoTooltipErrorInput: Story = {
decorators: [
(Story) => (
diff --git a/ui-core/src/styles/inputs/fieldWrapper.css b/ui-core/src/styles/inputs/fieldWrapper.css
index 6845d24fc..180e0ee36 100644
--- a/ui-core/src/styles/inputs/fieldWrapper.css
+++ b/ui-core/src/styles/inputs/fieldWrapper.css
@@ -1,7 +1,3 @@
-:root {
- --tooltip-transition-duration: 0.2s;
-}
-
.feed-back {
border-radius: 0.5rem;
position: relative;
@@ -32,53 +28,5 @@
margin-left: 0.563rem;
}
}
-
- input:focus:has(.status-message-wrapper-tooltip) .status-message-wrapper-tooltip {
- z-index: 2;
- }
-
- .status-message-wrapper-tooltip {
- position: absolute;
- display: flex;
- align-items: center;
- width: 320px;
- top: 60px;
- gap: 12px;
- border-radius: 8px;
- box-shadow:
- 0px 10px 20px 0px rgba(0, 0, 0, 0.2),
- 0px 1px 0px rgba(255, 255, 255, 0.6) inset;
- background-color: theme('colors.error.5');
- opacity: 1;
- padding: 8px 12px;
- min-height: 64px;
-
- z-index: 10;
- transition: var(--tooltip-transition-duration) ease;
-
- .status-message {
- opacity: 1;
- color: theme('colors.error.60');
- font-size: 16px;
- font-weight: 600;
- font-style: SemiBold;
- letter-spacing: 0px;
- text-align: left;
- line-height: 24px;
- }
- }
- .tooltip-left {
- left: -5px;
- }
-
- .tooltip-right {
- right: -5px;
- }
- }
-}
-
-@media (prefers-reduced-motion: reduce) {
- :root {
- --tooltip-transition-duration: 0s;
}
}
diff --git a/ui-core/src/styles/inputs/statusMessage.css b/ui-core/src/styles/inputs/statusMessage.css
index b6d469484..5b0e97162 100644
--- a/ui-core/src/styles/inputs/statusMessage.css
+++ b/ui-core/src/styles/inputs/statusMessage.css
@@ -31,3 +31,60 @@
}
}
}
+
+.status-message-wrapper-tooltip {
+ position: absolute;
+ display: flex;
+ align-items: center;
+ width: 320px;
+ top: 74px;
+ gap: 12px;
+ border-radius: 8px;
+ box-shadow:
+ 0px 10px 20px 0px rgba(0, 0, 0, 0.2),
+ 0px 1px 0px rgba(255, 255, 255, 0.6) inset;
+ padding: 6px 12px 10px;
+ min-height: 64px;
+ z-index: 10;
+
+ &.small {
+ top: 58px;
+ }
+
+ &.error {
+ background-color: theme('colors.error.5');
+ }
+
+ &.info {
+ background-color: theme('colors.info.5');
+ }
+
+ &.warning {
+ background-color: theme('colors.warning.5');
+ }
+
+ &.tooltip-left {
+ left: -5px;
+ }
+
+ &.tooltip-right {
+ right: -5px;
+ }
+
+ .status-message {
+ font-weight: 600;
+ text-align: left;
+
+ &.error {
+ color: theme('colors.error.60');
+ }
+
+ &.info {
+ color: theme('colors.info.60');
+ }
+
+ &.warning {
+ color: theme('colors.warning.60');
+ }
+ }
+}