1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
|
/**
* @file
* Comment Styling
*/
/* line 9, ../../../sass/sass/comments.scss */
.comments {
/* Wrapper for the list of comments and its title */
margin: 1.5em 0;
}
/* line 12, ../../../sass/sass/comments.scss */
.comments h2.title {
/* Heading for the list of comments */
}
/* line 15, ../../../sass/sass/comments.scss */
.comments h2.comment-form {
/* Heading for the comment form */
}
/* line 19, ../../../sass/sass/comments.scss */
.comment {
/* Wrapper for a single comment */
}
/* line 21, ../../../sass/sass/comments.scss */
.comment.comment-preview {
/* Preview of the comment before submitting new or updated comment */
background-color: #ffffea;
/* Drupal core will use a #ffffea background. See #1110842 */
}
/* line 25, ../../../sass/sass/comments.scss */
.comment.new {
/* A new comment since the user last viewed the page. */
}
/* line 28, ../../../sass/sass/comments.scss */
.comment.first {
/* The first comment in the list of comments */
}
/* line 31, ../../../sass/sass/comments.scss */
.comment.last {
/* The last comment in the list of comments */
}
/* line 34, ../../../sass/sass/comments.scss */
.comment.odd {
/* An odd-numbered comment in the list of comments */
}
/* line 37, ../../../sass/sass/comments.scss */
.comment.even {
/* An even-numbered comment in the list of comments */
}
/* line 40, ../../../sass/sass/comments.scss */
.comment.comment-by-anonymous {
/* A comment created by an anonymous user */
}
/* line 43, ../../../sass/sass/comments.scss */
.comment.comment-by-node-author {
/* A comment created by the node's author */
}
/* line 46, ../../../sass/sass/comments.scss */
.comment.comment-by-viewer {
/* A comment created by the current user */
}
/* line 49, ../../../sass/sass/comments.scss */
.comment h3.comment-title {
/* Comment title */
}
/* line 52, ../../../sass/sass/comments.scss */
.comment .new {
/* "New" marker for comments that are new for the current user */
color: #c00;
}
/* line 56, ../../../sass/sass/comments.scss */
.comment .user-picture {
/* The picture of the comment author */
}
/* line 59, ../../../sass/sass/comments.scss */
.comment .submitted {
/* The "posted by" information */
}
/* line 62, ../../../sass/sass/comments.scss */
.comment .permalink {
/* Comment's permalink wrapper */
text-transform: uppercase;
font-size: 75%;
}
/* line 67, ../../../sass/sass/comments.scss */
.comment .user-signature {
/* The user's signature */
}
/* line 70, ../../../sass/sass/comments.scss */
.comment ul.links {
/* Comment links. See also the ul.links declaration in the pages.css. */
}
/* line 74, ../../../sass/sass/comments.scss */
.indented {
/* Nested comments are indented */
margin-left: 30px;
/* Drupal core uses a 25px left margin */
}
/* line 78, ../../../sass/sass/comments.scss */
.comment-unpublished {
/* Unpublished comments */
/* background-color: #fff4f4; */
/* Drupal core uses a #fff4f4 background */
}
/* line 81, ../../../sass/sass/comments.scss */
.comment-unpublished p.unpublished {
/* The word "Unpublished" displayed underneath the content. */
height: 0;
overflow: visible;
color: #d8d8d8;
font-size: 75px;
line-height: 1;
font-family: Impact, "Arial Narrow", Helvetica, sans-serif;
font-weight: bold;
text-transform: uppercase;
text-align: center;
word-wrap: break-word;
}
|