diff --git a/client/css/main.styl b/client/css/main.styl
index 0907caa..2743525 100644
--- a/client/css/main.styl
+++ b/client/css/main.styl
@@ -38,11 +38,13 @@ th
font-weight: normal
a
+ cursor: pointer
color: $main-color
text-decoration: none
transition: color 0.1s linear
&.inactive
color: $inactive-link-color
+ cursor: default
&.icon
color: $inactive-link-color
opacity: .5
diff --git a/client/css/posts.styl b/client/css/posts.styl
index 805a54e..791dfb6 100644
--- a/client/css/posts.styl
+++ b/client/css/posts.styl
@@ -30,8 +30,8 @@ $safety-unsafe = #F3985F
text-align: center
vertical-align: middle
transition: background 0.2s linear
- a:hover
- background: lighten($main-color, 90%)
+ &:not(.inactive):hover
+ background: lighten($main-color, 90%)
i
font-size: 140%
text-align: center
@@ -107,7 +107,6 @@ $safety-unsafe = #F3985F
padding: 0.5em
box-sizing: border-box
border: 0
- cursor: pointer
&:after
display: inline-block
width: 1em
diff --git a/client/html/comment.tpl b/client/html/comment.tpl
index da91a03..8cae159 100644
--- a/client/html/comment.tpl
+++ b/client/html/comment.tpl
@@ -32,13 +32,13 @@
--><% if (ctx.canEditComment) { %> edit<% } %><% if (ctx.canDeleteComment) { %> delete<% } %>