XF 2.1 XF1.5 -> XF2.1.4 - Unread conversation title not bold anymore in the drop-down list

Bimble

Active member
Hello,

We've upgraded a forum from XF1.5 to XF2.1.4 and now when you click the envelope to see a list of conversations, new/unread convo titles are no longer showing in bold.

Not sure if this is a by-design change by XF but would like to have the unread/new conversation titles show in bold as before. Does anyone know how to do this please?

Thanks
 
Try this in extra.less,
CSS:
// Bold unread conversation and alerts
.menu-row--highlighted .fauxBlockLink-blockLink {
  font-weight:bold;
}
Many thanks.

That didn't work for some reason (maybe we've tweaked something somewhere that is stopping it working), but it gave us a lead in to something and we found this seems to work for us in the short few tests we've done:

Code:
/* Mark Unread Conversations Alerts as Bold */
.menu-row.menu-row--highlighted .fauxBlockLink a, .fauxBlockLink .fauxBlockLink-link {
  font-weight: bold;
}
 
Top Bottom