Less for custom group banners

xF2 Template Modification Less for custom group banners

DareSec

Inforc3r
Staff member
Administrator
Moderator
S.V.I.P Member
Collaborate
Registered
Joined
May 25, 2019
Messages
1,375
Points
523

Reputation:

DareDevil submitted a new resource:

Less for custom group banners - custom group banners

To add custom group banners as default in XF 2, it is enough to specify a custom class in the group settings.

1589225913824-png.png


Where is userBanner userBanner--admin, this is our custom class.

Less:
.m-userBannerVariation(@color; @bg; @border: false)
{
    color: @color;
    background: @bg;
    border-color: xf-intensify(@bg, 10%);

    & when (iscolor(@border))
    {
        border-color: @border;
    }
}

.userBanner
{
    font-size: 75%...

Read more about this resource...
 
Top