XF 2.2 Change more options bar colour

I need to change the colour of the more options bar when in a post, the theme is dark so most content is light but for this bar that means options cant be selected
1603401534946.webp
 
What did you tried ?
use this one to see if it's work
Less:
.fr-toolbar {.fr-more-toolbar.fr-expanded {
    background: #000;
    color: #8D7DBA;
    }
}
or like this
Less:
.fr-toolbar {.fr-more-toolbar {.fr-expanded {
    background: #000;
    color: #8D7DBA;
    }
}}
 
Top Bottom