XF 2.3 Replacing node icons via css

JoyFreak

Well-known member
In 2.2 you could simply do this with a css hack:
Code:
.node.node--id(node_id) .node-icon i:before {
    content: "\f019";
}

But now I see 2.3 uses svg. How does one replace the node icon using css with svg's?
 
Top Bottom