View Issue Details

IDProjectCategoryView StatusLast Update
0020393MMW 5Skinning frameworkpublic2026-05-17 17:31
Reporterzvezdan Assigned To 
PrioritynoneSeverityminorReproducibilityN/A
Status resolvedResolutionfixed 
Fixed in Version2027 
Summary0020393: Ability to set different colors for tooltips depending of their parent needed
DescriptionI want to set colors for tooltips in panels on main window like Media Tree in my skin differently than other tooltips.

It is impossible to get Inspect Element dialog for tooltips, so I cannot know which classes these tooltips have, but after brief look at tooltipController.js it seems there is no way that I could find the data-control-class of parent element of tooltip, which could be used in skins.

Unless I am missing something, I suggest that you add one new class to the tooltips which will contain the data-control-class of the first parent of that tooltip that have such class. You could call it data-parent-class or something like that, so that I could write in the skin_toastmessage_add.less file:
.tooltip[data-parent-class=MediaTree] {
   color: ...;
}
TagsNo tags attached.
Fixed in build3402

Activities

michal

2026-05-17 17:31

developer   ~0081161

Fixed in build 3402. Tooltip control has class "tooltip" and now additionally also attribute data-parent-class filled by data-control-class attribute of the first parent element, containing class and this class is not pure "Control". So it is e.g. "MediaTree" or "Player", etc.