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;
}
 
Top Bottom