-
-
Notifications
You must be signed in to change notification settings - Fork 32.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[IconButton] Tooltip hidden behind TableRowColumn's row #4671
Comments
Have you found a resolution to this? |
@bteepell nope, just did not use it since I had to deliver the project fast. But still waiting for a fix or workaround. |
I changed the height of the tablerow to 65px from default 48 and size of the IconButton style to 24px,24px. Worked for me |
This is not only a Chrome issue. |
I'm having this issue also. It would be nice workaround if the tooltipPosition had a straight "left" or "right" option. |
This issue was previously fixed by #5014, which introduced the regression #5377. We should definitely follow what @oliviertassinari said:
|
Very interested on this as well! |
style set to overflow: 'visible' works for me on all browsers but in IE 11 and IE only the very first row the Tooltip does not overflow. |
Thanks @bteepell! this is the only thing that worked for me in stopping the tooltip being hidden by it's parent container 👍 |
I was also able to fix this by using |
@bteepell's suggestion works however be aware that you need to change the <TableRowColumn style={{ overflow: 'visible' }}>
<IconButton
tooltip='Mark done'
tooltipPosition={isLastRow ? 'top-center' : 'bottom-center'}
>
<DoneIcon />
</IconButton>
</TableRowColumn> |
nothing works , tooltip still hidden |
@IzaGz <TableRowColumn style={{ overflow: 'visible' }}> should do the job. |
Closing for #2230 |
@oliviertassinari why is it closing? it does not work! |
@IzaGz, we moved our interest on the v1-beta branch where this issue is mostly fixed. |
I'm noticing this with expansion panel on 1.0.0-beta.31. Setting Here's a codesandbox example I agree with the @octavioamu assessment that
Is it worth filing a new issue for this in v1 or is it on the roadmap already? |
Also look same issue. |
Problem description
When used inside a
<TableRowColumn/>
,<IconButton/>
's tooltip appears to be behind the rows, it appears during the transition and disappears on row's limit.Steps to reproduce
Simply include a
<IconButton/>
component usingtooltip
prop inside a<TableRowColumn/>
.Versions
The text was updated successfully, but these errors were encountered: