Despite customizing our tooltips with CSS, we are still experiencing an issue where the tooltips appear translucent rather than having an opacity of 1. This is evident in the image provided (with text visible in the background):
https://i.sstatic.net/nlMcU.png
We have attempted to manually set the opacity value to 1 with the following CSS code:
.silo-tooltip .rc-tooltip {
/* Material-UI's modal is 1300 */
z-index: 1400;
opacity: 1 !important;
}
Despite our efforts, this adjustment does not seem to be taking effect. Is this a known issue, or is there a crucial detail that we may be overlooking?