margin: auto;
}
+#sone .hidden {
+ display: none;
+}
+
#sone a {
color: inherit;
text-decoration: none;
padding: 1ex;
}
-#sone .post .reply div, #sone .post .time, #sone .post .delete {
+#sone .post .reply div, #sone .post .time, #sone .post .delete, #sone .post .show-reply-form {
font-size: inherit; /* or else fproxy's css rules will fuck us. */
}
font-size: inherit;
}
+#sone .post .show-reply-form {
+ display: inline;
+}
+
+#sone .post .show-reply-form:before {
+ content: ' ‧ ';
+}
+
#sone .post .reply .status-line .delete {
float: none;
display: inline;
$(document).ready(function() {
registerInputTextareaSwap("#sone input.createpost", "What are you doing?");
registerInputTextareaSwap("#sone input.create-reply", "Write a Reply…");
+
+ /* hide all the “create reply” forms until a link is clicked. */
+ commentElement = $("<div>Comment</div>").addClass("show-reply-form").click(function() {
+ });
+ $("#sone .post > .status-line .time").after(commentElement);
+ $("#sone .post .create-reply").addClass("hidden");
});
</script>