Add comment edit icon and form

Show an icon next to the comment deletion icon, which leads to a
comment edit form.

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-10 18:47:31 +02:00 committed by Lukas Fleischer
parent 8375d21210
commit 92e19e95f3
11 changed files with 139 additions and 9 deletions

View file

@ -96,17 +96,24 @@
color: #999;
}
.delete-comment-form {
.delete-comment-form, .edit-comment {
float: right;
margin-left: 8px;
}
.delete-comment {
.edit-comment {
height: 11px;
position: relative;
top: 1px;
}
.delete-comment, .edit-comment {
-webkit-filter: grayscale(100%);
filter: grayscale(100%);
opacity: 0.6;
}
.delete-comment:hover {
.delete-comment:hover, .edit-comment:hover {
-webkit-filter: none;
filter: none;
opacity: 1;