XF 1.4 Opacity of Style Chooser tooltip

Style Properties > Overlays and Tooltips > Tooltip

The opacity can be changed in the A input box when you bring up the overlay to edit the color.
 
Thank you, Maru.

Rather than use the Style Properties, I would like to add a rule in the EXTRA.css to change the opacity to 1.0. Anyone know which CSS selector I would use?
 
Thank you, Maru.

Rather than use the Style Properties, I would like to add a rule in the EXTRA.css to change the opacity to 1.0. Anyone know which CSS selector I would use?

It's pulling the background-color from the color palette(where the opacity is set too):

@tooltipBackground

Or this should work in extra

Code:
.xenTooltip
{
background-color: #000 !important;
}
 
Top Bottom