XF 2.3 If you want to easily make STICKY and LOCKED standout.

MapleOne

Well-known member
Screenshot (93).webp




If you want to make the Sticky or Locked icon stand out a bit more just add this to extra.less



Code:
/* Change Sticky and Locked Icon to Bold */
.structItem-status--sticky:before { font-weight: 800; }
.structItem-status--locked:before { font-weight: 800; }
 
  • Like
Reactions: FoP
You can add colours too.


Code:
{ color: red; }

Yes you can and you can change it in the the locked message in thread view as well


I use this...


Code:
/* Change Sticky and Locked Icon to Bold */
.structItem-status--sticky:before { font-weight: 800; }
.structItem-status--locked:before { font-weight: 800; }
dd.blockStatus-message.blockStatus-message--locked:before { font-weight: 800; }
dd.blockStatus-message.blockStatus-message--locked:before { color: black; }
 
Back
Top Bottom