XF 2.0 Color font filterBar-menuTrigger

Abraham54

Well-known member
I can not find where to change the colour of the font and arrow the filterBar-menuTrigger is using when not active.
The colour of the font and arrow is black and has to become white.

See picture:

5c0b9014665d8-filterBar-menuTrigger.png
 
Hello,

filterBar-menuTrigger is your class (CSS/LESS), you can find it in your core_filter.less template :
Code:
.filterBar-menuTrigger
{
    float: right;
    white-space: nowrap;
    border-radius: @xf-borderRadiusMedium;
    text-decoration: none;
    padding: 1px  5px;

    &:after
    {
        .m-faBase();
        .m-faContent(" @{fa-var-caret-down}");
    }
}

The default code, you need to add color: #FFF; after padding: 1px 5px; for example ! ;)

If you want you can add this code to your EXTRA.less template :
Code:
/*color filterBar*/
.filterBar-menuTrigger {
    color: #FFF;
}

Next time you can use the search system by xenForo :
190131

Regards, SyTry
 
Back
Top Bottom