Remove Tooltips from Employee Center
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ā01-04-2023 02:14 AM
I want to make the tooltip disappear from the screen after 10 seconds even if the mouse is still placed on it.
There is a system property for it named glide.ui.accessibility.tooltip_duration. Its value is set to 10 seconds but the text does not disappear after 10 seconds. Does anyone know how to make it work
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ā01-04-2023 03:16 AM
Hi @kj30 ,
Check this should help you :https://www.servicenow.com/community/it-service-management-blog/help-text-options-for-service-catalo...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ā01-04-2023 03:27 AM
Hi @Community Alums ,
My concern is related to quick links present under Mega Menu Items. If i hover mouse on any quick link i can see the tooltip but it stays on the screen as long as the cursor is kept on the quick link. According to the system property i mentioned it should only stay there for 10 seconds.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ā10-08-2024 09:49 PM
Hi,
I found these steps to work for me:
- Change the current scope to Employee Center
- Navigate to Service Portal > Themes
- Locate the EC Theme in the list an open the record
- Go to the CSS Includes related list at the bottom of the form for the EC Theme
- Locate the CSS include entry for ec-theme-va and open it
- Click on the "i" button for the entry in the CSS include field to go to the CSS include record ec-theme-va
- Click on the "i" button for the entry in the Style sheet field to go to the Style sheet record for ec-theme-va
- Modify the the CSS field by adding the text:
.navbar-inverse .clearfix .navbar-brand + .tooltip{
display: none !important;
}
- Save the Style sheet record, return to your ESC portal window and refresh the browser. The tooltip should no longer appear
- Sigh with relief and move on with more important matters.