We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Unable to show hints message using ionic-tooltips in ModalController
The text was updated successfully, but these errors were encountered:
i ran into the same issue, just add a z-index to your tooltip boxes:
//src/app/app.scss tooltip-box { z-index: 100000; }
then they will show up in modals
Sorry, something went wrong.
As @AwsmOli said, you can target the directive directly.
OR.. I have created an updated version of this project; ionic4-tooltips.
In it I have add a wrapper div with the class tooltip-box which you can target in css:
tooltip-box
.tooltip-box { z-index: 100000; }
Or pass styles directly through an attribute:
<ion-button tooltip="I'm a beautiful tooltip" [tooltipStyles]="{ 'z-index': 100000; }"> Tooltip </ion-button>
Added in this commit
No branches or pull requests
Unable to show hints message using ionic-tooltips in ModalController
The text was updated successfully, but these errors were encountered: