Is there a way to adjust the bootstrap tooltip background-color based on the container?
For example, my header has a white background and my footer is black.
#header .tooltip-inner{
background-color:fade(@grayWhite,80);
}
#footer .tooltip-inner{
background-color:fade(@black,80);
}
I tried the above code but it's not working. Any suggestions on how I can achieve this?
Currently, I'm only able to set the style for all tooltips using the following:
.tooltip-inner {
color: @grayLight;
background-color:fade(@grayWhite,80);
}
Thank you in advance.