- May 18, 2015
- 1,050
- 179
- 2,391
BassMan submitted a new resource:
Hide user extra info and show it on hover - extra.less
Read more about this resource...
Hide user extra info and show it on hover - extra.less
For this:
You don't have permission to view attachments. Attachments are hidden.
... 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...