aboutsummaryrefslogtreecommitdiffstats
path: root/apps/comments/css
diff options
context:
space:
mode:
authorVincent Petry <pvince81@owncloud.com>2016-02-03 18:44:14 +0100
committerVincent Petry <pvince81@owncloud.com>2016-02-03 21:06:55 +0100
commitbbefe1ed64c0b4a9b77dc8d9b06b9f56c6b7f6e8 (patch)
treef304cf2e608a05fdc50f7366046b64e71328155e /apps/comments/css
parentda0462015507053c4424f62c32a4a182301fae22 (diff)
downloadnextcloud-server-bbefe1ed64c0b4a9b77dc8d9b06b9f56c6b7f6e8.tar.gz
nextcloud-server-bbefe1ed64c0b4a9b77dc8d9b06b9f56c6b7f6e8.zip
Comment owner can now edit or delete
Diffstat (limited to 'apps/comments/css')
-rw-r--r--apps/comments/css/comments.css27
1 files changed, 27 insertions, 0 deletions
diff --git a/apps/comments/css/comments.css b/apps/comments/css/comments.css
index 5e247aaeb71..f4e7d144ec5 100644
--- a/apps/comments/css/comments.css
+++ b/apps/comments/css/comments.css
@@ -47,9 +47,36 @@
#commentsTabView .comment .date {
position: absolute;
+ right: 20px;
+}
+
+#commentsTabView .comment .action {
+ opacity: 0;
+ vertical-align: middle;
+ display: inline-block;
+}
+
+#commentsTabView .comment:hover .action {
+ opacity: 0.3;
+}
+
+#commentsTabView .comment .action:hover {
+ opacity: 1;
+}
+
+#commentsTabView .comment .action.delete {
+ position: absolute;
right: 0;
}
+#commentsTabView .comment.disabled {
+ opacity: 0.3;
+}
+
+#commentsTabView .comment.disabled .action {
+ visibility: hidden;
+}
+
.app-files .action-comment>img {
margin-right: 5px;
}