summaryrefslogtreecommitdiff
path: root/assets/css/comment.css
diff options
context:
space:
mode:
authorFrédéric Guillot <fred@kanboard.net>2014-11-02 15:06:41 -0500
committerFrédéric Guillot <fred@kanboard.net>2014-11-02 15:06:41 -0500
commit37332ae2222706f8fb330dae780dc938512edcf5 (patch)
tree9161d539cc289179339162d6922c4d9dd2c30e63 /assets/css/comment.css
parent8fe5df39d97ef851d11931fcf7e906ec08838ef7 (diff)
Change layout (experimental)
Diffstat (limited to 'assets/css/comment.css')
-rw-r--r--assets/css/comment.css67
1 files changed, 67 insertions, 0 deletions
diff --git a/assets/css/comment.css b/assets/css/comment.css
new file mode 100644
index 00000000..15b37091
--- /dev/null
+++ b/assets/css/comment.css
@@ -0,0 +1,67 @@
+/* comments */
+.comment {
+ margin-bottom: 20px;
+}
+
+.comment:hover {
+ background: #F7F8E0;
+}
+
+.comment-inner {
+ border-left: 4px solid #333;
+ padding-bottom: 10px;
+ padding-left: 20px;
+ margin-left: 20px;
+ margin-right: 10px;
+}
+
+.comment-preview {
+ border: 2px solid #000;
+ border-radius: 3px;
+ padding: 10px;
+}
+
+.comment-preview .comment-inner {
+ border: none;
+ padding: 0;
+ margin: 0;
+}
+
+.comment-title {
+ margin-bottom: 8px;
+ padding-bottom: 3px;
+ border-bottom: 1px dotted #aaa;
+}
+
+.comment-actions {
+ font-size: 0.8em;
+ padding: 0;
+ text-align: right;
+}
+
+.comment-actions li {
+ display: inline;
+ padding-left: 5px;
+ padding-right: 5px;
+ border-right: 1px dotted #000;
+}
+
+.comment-actions li:last-child {
+ padding-right: 0;
+ border: 0;
+}
+
+.comment-username {
+ font-weight: bold;
+}
+
+.comment-textarea {
+ height: 200px;
+ width: 80%;
+ max-width: 800px;
+}
+
+#comments .comment-textarea {
+ height: 80px;
+ width: 500px;
+} \ No newline at end of file