XF 2.3 How to return forum section icons Fontawesome?

Astra

Active member
Previously, they were registered in extra lees.
After the update everything disappeared, how can I restore the partition icons?
 
Code:
.node--id2
{
    .node-icon i::before
        {
            content: "\f654";
        }
}
.node--id5
{
    .node-icon i::before
        {
            content: "\f2f4";
        }
}

This is what it looked like before
 
Replace
Less:
content: "\f654";
By
Less:
.m-faContent(@fa-var-user);
Change user by the FA name

In XF 2.3, node icons are SVG, so you must remove the original icon to prevent it from displaying alongside your custom one.
Less:
.node .node-icon svg {display: none;}
 
Back
Top Bottom