1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-08-10 08:15:25 +02:00

fix(tooltip): make react tooltip stay open EE-3445

This commit is contained in:
testa113 2022-06-17 13:10:26 +12:00
parent 97a880e6c1
commit efb0e5ec2a
2 changed files with 7 additions and 0 deletions

View file

@ -15,6 +15,12 @@
text-align: center;
font-size: 12px !important;
font-weight: 400;
pointer-events: auto !important;
}
.tooltip:hover{
visibility: visible !important;
opacity: 1 !important;
}
.icon {

View file

@ -24,6 +24,7 @@ export function Tooltip({ message, position = 'bottom' }: Props) {
place={position}
effect="solid"
className={styles.tooltip}
delayHide={200}
arrowColor="transparent"
/>
</span>