XF 2.1 Using older FA Icons?

Gamorreaner

Active member
Hello,

is there a way to use older Font Awesome Icons (5.0.0)?

I'm currently using the star wars rebel and empire FA Icon as Node Icons (xf 2.0), but they both don't seem to be supported any longer (in xf 2.1).

Both have Version 5.0.0, while xF 2.1 uses 5.12.1
 
What exactly do you mean with icon reference?

My code looks like this:
Code:
    /* read icon */
    .node--forum.node--read .node-icon i:before, .subNodeLink.subNodeLink--forum:before {
        .m-faContent(@fa-var-empire, 1em);
        -webkit-text-stroke: 0.2px #831100;
        color: #000;
        text-shadow: none;
    }
    /* unread icon */
    .node--forum.node--unread .node-icon i:before, .subNodeLink.subNodeLink--forum.subNodeLink--unread:before {
        .m-faContent(@fa-var-rebel, 1em);
        -webkit-text-stroke: 1px #831100;
        color: #831100;
        text-shadow: none;
    }

Worked fine in 2.0, but does not work in my testforum for 2.1 anymore.
 
Less:
/* read icon */
.node--forum.node--read .node-icon i:before,
.subNodeLink.subNodeLink--forum:before
{
    .m-faBase('Brands');
    .m-faContent(@fa-var-empire, 1em);
    -webkit-text-stroke: 0.2px #831100;
    color: #000;
    text-shadow: none;
}

/* unread icon */
.node--forum.node--unread .node-icon i:before,
.subNodeLink.subNodeLink--forum.subNodeLink--unread:before
{
    .m-faBase('Brands');
    .m-faContent(@fa-var-rebel, 1em);
    -webkit-text-stroke: 1px #831100;
    color: #831100;
    text-shadow: none;
}
 
Top Bottom