CSS Highlight When Hovering Mouse Over Forum or Thread

i used to have this for Xf 1.x but it is not working for Xf 2.x

/* discussionList Hover effect */
.nodeList .nodeInfo:hover, .discussionList .discussionListItem:hover, .discussionListItem:hover .posterAvatar, .discussionListItem:hover .stats {
-webkit-transition: all 0.5s ease-in;
-moz-transition: all 0.5s ease-in;
-ms-transition: all 0.5s ease-in;
-o-transition: all 0.5s ease-in;
transition: all 0.5s ease-in;
}
.nodeList .nodeInfo:hover, .discussionList .discussionListItem:hover, .discussionListItem:hover .posterAvatar, .discussionListItem:hover .stats:hover {
-moz-transform: scale(1.05);
-webkit-transform: scale(1.05);
-o-transform: scale(1.05);
-ms-transform: scale(1.05);
-webkit-transform: scale(1.05); -moz-transform: scale(1.05); -o-transform: scale(1.05); -ms-transform: scale(1.05);transform: scale(1.05);
}
.nodeList .nodeInfo:hover, .discussionList .discussionListItem:hover, .discussionListItem:hover .posterAvatar, .discussionListItem:hover .stats
{
background-color: Dark gray;
}

It still works as im using this zoom on hover effect too.
You just have to find the new class names to get it working again.

Edit:
These are the classes that i'm using:
Code:
.block-body .node--forum, .structItemContainer-group .structItem--thread

Edit2:
To also get the threads in what's new:
Code:
.block-body .node--forum, .structItemContainer .structItem--thread, .structItemContainer-group .structItem--thread
 
Last edited:
Top Bottom