This does indeed load a second icon. This CSS only approach seems to work:
Code:
.node .node-icon i
{
&:before
{
.m-faContent(@fa-var-upload);
width: 100%;
}
svg
{
display: none;
}
}
But it's essentially hiding the default SVG icon. Would you recommend a better approach (CSS only)?