font-weight: bold;
}
-#sone input.createpost.default {
+#sone input.createpost.default, input.create-reply.default {
color: #888;
}
\ No newline at end of file
<form method="post" action="createReply.html">
<input type="hidden" name="formPassword" value="<% formPassword|html>" />
<input type="hidden" name="post" value="<% post.id>" />
- <input type="text" name="text" value="" />
+ <input type="text" class="create-reply" name="text" value="" />
<button type="submit"><%= View.Post.SendReply|l10n|html></button>
</form>
</div>
/* register input field/textarea swap. */
$(document).ready(function() {
registerInputTextareaSwap("#sone input.createpost", "What are you doing?");
+ registerInputTextareaSwap("#sone input.create-reply", "Write a Reply…");
});
</script>