Make comment actions (report, delete, restore) only visible on hover

This commit is contained in:
Paul Kaplan 2018-11-21 11:46:54 -05:00
parent 54ce126559
commit 933b805044

View file

@ -289,3 +289,7 @@
margin-right: -50%;
}
}
/* Hide the action list buttons (delete/report/restore) until hover over */
.comment .action-list { opacity: 0; }
.comment:hover .action-list { opacity: 1; }