Custom Action Bar for Xenforo 2.1

Xenforo 2.1 Custom Action Bar for Xenforo 2.1

ENXF NET

Administrator
Staff member
Administrator
Moderator
+Lifetime VIP+
S.V.I.P.S Member
S.V.I.P Member
V.I.P Member
Collaborate
Registered
Joined
Nov 13, 2018
Messages
19,760
Points
823

Reputation:

LQD submitted a new resource:

Custom Action Bar for Xenforo 2.1 - Font Awesome icons for the action bar

Enter code in the extra.less
Before:
View attachment 492
After:
View attachment 493
Less:
.actionBar-action:before {
    margin-right: 5px;
}
.actionBar-action--edit:before {.m-faContent("\f040");}
.actionBar-action--report:before {.m-faContent("\f071");}
.actionBar-action--ip:before {.m-faContent("\f002");}
.actionBar-action--delete:before {.m-faContent("\f00d");}
.actionBar-action--spam:before {.m-faContent("\f024");}
.actionBar-action--warn:before...

Read more about this resource...
 

dddd

Well-known member
Registered
Joined
Mar 2, 2022
Messages
68
Points
18

Reputation:

Deleted

dddd

Well-known member
Registered
Joined
Mar 2, 2022
Messages
68
Points
18

Reputation:

is it possible to make these icons show up on this sub menu on mobile?
dddd
CSS:
// More options menu icons
.menu-linkRow {
    &:before {
        .m-faBase();
        display: inline-block;
        margin-right: 5px;
    }
    &[href*='/edit']:before {.m-faContent(@fa-var-pencil);}
    &[href*='/ip']:before {.m-faContent(@fa-var-search);}
}
 
Top