[cXF] Hide user extra info ...

[cXF] Hide user extra info ...

BassMan

Well-known member
BassMan submitted a new resource:

Hide user extra info ... - ... and show it on hover

Check Free and Premium cXF DIY Customizations on customizexf.com

View attachment 165162


Add code to your extra.less template:
CSS:
/* Hide user extra info */
.message-userExtras {
    opacity: 0;
    max-height: 0px;
    overflow: hidden;
    transition: all 0.5s ease-in-out;
}
.message-cell.message-cell--user:hover .message-userExtras {
    opacity: 1;
    max-height: 300px;
}
/**********/

Read more about this resource...
 
Top Bottom