XF 2.2 Editor Highlighted Text Colour

This added to the extra.less template should work:

Less:
::selection,
::-moz-selection
{
    color: black !important;
    background: orange !important;
}
 
This added to the extra.less template should work:

Less:
::selection,
::-moz-selection
{
    color: black !important;
    background: orange !important;
}

That doesn't seem to have had any affect on it.

Edit: Checked on default and it remains the same colour also.
 
Works for me on my local.

Try this instead:
Less:
::selection
{
    color: black !important;
    background: orange !important;
}
 
Back
Top Bottom