Use SVG image for comment deletion icon

This also puts the icon to the right and the timestamp in the byline
and wipes out a repeated instance of the byline.

Signed-off-by: Marcel Korpel <marcel.korpel@gmail.com>
Signed-off-by: Lukas Fleischer <lfleischer@archlinux.org>
This commit is contained in:
Marcel Korpel 2015-07-09 00:33:25 +02:00 committed by Lukas Fleischer
parent 4ca8747396
commit 8375d21210
6 changed files with 65 additions and 17 deletions

View file

@ -96,6 +96,22 @@
color: #999;
}
.delete-comment-form {
float: right;
}
.delete-comment {
-webkit-filter: grayscale(100%);
filter: grayscale(100%);
opacity: 0.6;
}
.delete-comment:hover {
-webkit-filter: none;
filter: none;
opacity: 1;
}
legend {
padding: 1em 0;
}