#sone .post .show-reply-form {
display: inline;
+}
+
+#sone .post .show-reply-form span {
color: rgb(28, 131, 191);
cursor: pointer;
+ font: inherit;
}
-#sone .post .show-reply-form:hover {
+#sone .post .show-reply-form span:hover {
color: rgb(255, 172, 0);
}
$("#sone .post").each(function() {
postId = $(this).attr("id");
commentElement = (function(postId) {
- var commentElement = $("<div>Comment</div>").addClass("show-reply-form").click(function() {
+ var commentElement = $("<div><span>Comment</span></div>").addClass("show-reply-form").click(function() {
replyElement = $("#sone .post#" + postId + " .create-reply");
replyElement.removeClass("hidden");
replyElement.removeClass("light");