XF 2.0 Tooltip CSS

AndyB

Well-known member
I would like to change the color and background for the following tooltip:

1523915581906.webp

What is the correct CSS for this element?

Thank you.
 
#js-XFUniqueId4 .tooltip-content
No clue when or where these IDs are generated, so might be a chance there is a different ID for you
 
Nailed it. In /js/xf/core/tooltip.js add right at the beginning of the constructor method:
JavaScript:
if(content == "Style chooser")
    options["extraClass"] = "your_custom_class";
 
Got it.

Thank you both for your help.

CSS:
.tooltip-content {
	color: @xf-linkHoverColor !important;
}
 
Back
Top Bottom