Adding Font Awesome Icons to Post Bit Messages

Add extra.less to the template.
Less:
.message-userExtras {
    .pairs {

        dt {
            margin-right: 3px;

            &:before {
                .m-faBase();
                padding-right: 2px;
            }
        }

        &:nth-child(1) dt {
            .m-faBefore("\f075");
        }

        &:nth-child(2) dt {
            .m-faBefore("\f164");
        }

        &:nth-child(3) dt {
            .m-faBefore("\f091");
        }
    }
}
 
Back
Top