summaryrefslogtreecommitdiff
path: root/assets/css/src/comment.css
diff options
context:
space:
mode:
Diffstat (limited to 'assets/css/src/comment.css')
-rw-r--r--assets/css/src/comment.css65
1 files changed, 65 insertions, 0 deletions
diff --git a/assets/css/src/comment.css b/assets/css/src/comment.css
new file mode 100644
index 00000000..252ede21
--- /dev/null
+++ b/assets/css/src/comment.css
@@ -0,0 +1,65 @@
+.comment-sorting {
+ text-align: right
+}
+
+.comment-sorting a {
+ color: var(--color-medium);
+ font-weight: normal;
+ text-decoration: none
+}
+
+.comment-sorting a:hover {
+ color: var(--color-light);
+}
+
+.comment {
+ padding: 5px;
+ margin-bottom: 15px
+}
+
+.comment-title {
+ border-bottom: 1px dotted #eee;
+ margin-left: 55px
+}
+
+.comment-date {
+ color: var(--color-light);
+ font-weight: 200
+}
+
+.comment-actions {
+ text-align: right
+}
+
+.comment-content {
+ margin-left: 55px
+}
+
+.comments .text-editor textarea {
+ height: 90px
+}
+
+.comments .text-editor .text-editor-preview-area {
+ height: 90px
+}
+
+.comments .comment-highlighted {
+ background-color: #fff8dc;
+ border: 2px solid #ffeb8e
+}
+
+.comments .comment-highlighted:hover {
+ background-color: #fff8dc
+}
+
+.comments .comment:hover {
+ background: #fff8dc
+}
+
+.comments .comment:nth-child(even):not(.comment-highlighted) {
+ background: #fbfbfb
+}
+
+.comments .comment:nth-child(even):not(.comment-highlighted):hover {
+ background: #fff8dc
+}