Won't Fix
Last Updated: 20 Jun 2022 14:38 by ADMIN
The issue stems from the content div element that has explicit background color. The loading sign is a background-image on the main tooltip wrapper, so having explicit height and/or scrolling causes the later element to hide the root element, thus, hiding the loading sign as well.

You can work around this by removing the explicit color declaration for all skins:

div.RadToolTip div.rtContent
{
	background-color: transparent;
}