How to hide Service Portal modal tooltip ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-14-2021 09:54 PM
Hi Team,
I have assessment page on portal and "Submit Assessment" button, as soon as user clicks on the button below modal appears:
However this "Close Model" tooltip in black is appearing by default. How can i remove that?
- Labels:
-
Service Portal Development
- 2,310 Views
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-14-2021 11:06 PM
Hi,
Please implement this as per discussion mentioned in below threads which talks about similar requriement:
https://community.servicenow.com/community?id=community_question&sys_id=98489106db561cd0190b1ea6689619f4
https://community.servicenow.com/community?id=community_question&sys_id=60ae3bf1dbd698d0190b1ea6689619af
https://community.servicenow.com/community?id=community_question&sys_id=5aca5e71db54bf88a39a0b55ca96192f
Hope this helps. Please mark the answer as correct/helpful based on impact.
Regards,
Shloke
Regards,
Shloke
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-26-2021 12:53 PM
I'd also like to know the answer to this. I've read https://support.servicenow.com/kb?id=kb_article_view&sysparm_article=KB0995993 and I don't think "expected" is a reasonable answer. Almost everything in ServiceNow is expected, we can typically still change it.
Short of making a CSS rule to remove all tooltips, I do not know of any solutions for this yet.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-08-2021 10:58 PM
Mathieu,
can you please elaborate on CSS you mentioned?
I tried with this by widget instance, but no luck to select element at all:
.close.pull-right {
pointer-events: none;
}
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-09-2021 11:58 AM
Modal CSS unfortunately fall outside the widget itself. It would have to be a rule that affects the entire portal.
In the Portal's theme, this should work:
.modal-header > .tooltip {
display: none !important;
}
I think it's unlikely it can be disabled with a css rule, but it could be hidden.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-24-2023 07:28 AM
This worked for us 🙂 thank you 🙂