sherrie
8 years agoLeader
Different CSS for Unread Topics
I noticed when we switched to responsive that we no longer have any indication of which topics have unread messages. We had users that would visit the All Topics page and then look to see which ones they hadn't read yet.
I'm looking in the CSS and don't see any indicator for unread posts (except for moderators) ... has anyone else tracked this down?
Hey Sherrie,
On board level (and most message lists that contain a topic title) there's a <span class="lia-message-unread"> which can be used e.g. to put all unread topic links in bold
.lia-content .lia-message-unread.lia-message-unread.lia-link-navigation,
.lia-content .lia-message-unread.lia-message-unread > .lia-link-navigation { font-weight: bold; }Alternatively the Skype Community added the familiar orange unread dot behind each conversation:
.lia-message-unread:after { margin-left: 7px; content: "●"; color: #FFB200; }